﻿:root {
  --dusty-pink: #d8bdba;
  --mauve-pink: #b79aa3;
  --ivory: #faf7f1;
  --champagne: #c9a86a;
  --greige: #766b66;
  --deep-mauve: #8f747b;
  --mist-pink: #f2e8e6;
  --warm-white: #fffdf8;
  --porcelain: #f7f1ea;
  --line: #e5d8d0;
  --muted: #817773;
  --plant: #9aa98f;
  --shadow: 0 30px 90px rgba(118, 107, 102, .12);
  --soft-shadow: 0 18px 48px rgba(118, 107, 102, .075);
  --radius: 22px;
  --font-heading: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  color: var(--greige);
  font-family: var(--font-body);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 4%, rgba(216, 189, 186, .42), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(201, 168, 106, .16), transparent 32rem),
    radial-gradient(circle at 58% 100%, rgba(183, 154, 163, .18), transparent 32rem),
    linear-gradient(180deg, var(--warm-white) 0%, var(--ivory) 44%, #f4ebe7 100%);
}

body, button, input, textarea { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0 auto;
  padding: 24px clamp(28px, 5vw, 72px) 18px;
  border-bottom: 1px solid rgba(229, 216, 208, .52);
  background: rgba(255, 253, 248, .82);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand, .site-nav, .hero-actions, .free-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 106px;
  border-radius: 0;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: clamp(26px, 4vw, 56px);
  color: var(--greige);
  font-family: var(--font-en);
  font-size: clamp(17px, 1.6vw, 22px);
}

.site-nav a, .nav-cta { text-decoration: none; }
.site-nav a:hover { color: var(--deep-mauve); }

.nav-cta {
  min-height: 56px;
  min-width: 214px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 232, 230, .96), rgba(216, 189, 186, .62));
  color: var(--deep-mauve);
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.section, .section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(120px, 12vw, 172px) 0;
}

.section-band {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.soft-band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 253, 248, .84), transparent 22rem),
    linear-gradient(135deg, rgba(242, 232, 230, .78), rgba(250, 247, 241, .62)),
    linear-gradient(180deg, rgba(255, 253, 248, .72), rgba(247, 241, 234, .56));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, .88fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: center;
  min-height: calc(100vh - 128px);
  padding-top: clamp(76px, 8vw, 116px);
  padding-bottom: clamp(78px, 9vw, 126px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  color: var(--greige);
  font-family: var(--font-heading);
  font-weight: 700;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: .035em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: .025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

p {
  color: var(--muted);
  line-height: 1.95;
}

.lead {
  max-width: 680px;
  font-size: clamp(16px, 2vw, 19px);
}

.hero-documentary {
  grid-template-columns: minmax(0, .98fr) minmax(420px, .86fr);
}

.hero-documentary h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.15vw, 66px);
  font-weight: 400;
  letter-spacing: .045em;
  white-space: nowrap;
}

.hero-documentary h2 {
  max-width: 760px;
  margin-bottom: clamp(46px, 5.8vw, 78px);
  color: var(--deep-mauve);
  font-size: clamp(40px, 4.15vw, 66px);
  font-weight: 400;
  letter-spacing: .045em;
  white-space: nowrap;
}

.hero-letter {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.hero-letter p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 2.08;
  letter-spacing: .05em;
}

.hero-letter strong {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-weight: 500;
}

.concept-line {
  margin: 10px 0 !important;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 38px) !important;
  letter-spacing: .08em;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(42px, 5vw, 68px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: var(--radius);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover, .free-row a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(74, 74, 74, .12);
}

.button.primary {
  color: var(--warm-white);
  background: linear-gradient(135deg, #b07a88, #a86978);
  box-shadow: 0 14px 34px rgba(168, 105, 120, .18);
}

.hero .button.primary {
  min-width: 270px;
  min-height: 64px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
}

.hero .button.primary:after {
  content: "→";
  margin-left: 34px;
  font-family: var(--font-body);
}

.button.secondary {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(242, 232, 230, .82));
  color: var(--deep-mauve);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual:before {
  content: "";
  position: absolute;
  inset: -56px -38px auto auto;
  width: min(40vw, 520px);
  height: min(40vw, 520px);
  z-index: -1;
  border-radius: 50%;
  background: rgba(216, 189, 186, .42);
}

.hero-visual img, .profile-card img {
  width: 100%;
  max-height: 760px;
  border: 1px solid rgba(228, 220, 207, .9);
  border-radius: 0 120px 28px 28px;
  box-shadow: var(--shadow);
  filter: sepia(.08) saturate(1.06) brightness(1.03);
  object-fit: cover;
}

.profile-card img {
  max-height: 620px;
  border-radius: var(--radius);
}

.floating-note {
  display: none;
}

.floating-note span {
  display: block;
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 6px;
  color: var(--deep-mauve);
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 span {
  color: #c94f73;
}

.method-title {
  max-width: none;
  font-size: clamp(30px, 3.55vw, 56px);
  line-height: 1.45;
}

.method-title > .method-line {
  display: block;
  white-space: nowrap;
}

.motif-section {
  position: relative;
}

.motif-section:before {
  content: "";
  display: block;
  width: 34px;
  height: 46px;
  margin: 0 auto 36px;
  background: url("/assets/nagi-brand-mark.svg?v=20260622-logo2") center/contain no-repeat;
  opacity: .42;
}

.motif-section.split:before {
  position: absolute;
  top: 70px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.promise-grid, .icon-grid, .card-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.story-intro-grid p {
  font-size: clamp(16px, 1.7vw, 18px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
}

.text-link:after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--champagne);
}

.promise-grid article, .icon-grid article, .card-grid article, .faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--soft-shadow);
  padding: 32px;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1.5px solid var(--champagne);
  border-radius: 50%;
  background: transparent;
}

.line-icon:before, .line-icon:after {
  content: "";
  position: absolute;
  border: 1.5px solid var(--deep-mauve);
  border-left: 0;
  border-bottom: 0;
}

.line-icon:before {
  width: 14px;
  height: 14px;
  left: 12px;
  top: 13px;
  border-radius: 0 12px 0 0;
  transform: rotate(-30deg);
}

.line-icon:after {
  width: 8px;
  height: 18px;
  left: 20px;
  top: 13px;
  border-radius: 0 12px 0 0;
  transform: rotate(42deg);
}

.for-you {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 248, .92), transparent 34rem),
    radial-gradient(circle at 20% 78%, rgba(216, 189, 186, .22), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 248, .88), rgba(250, 247, 241, .74));
}

.for-you-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.for-you-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
}

.for-you-heading h2 span {
  color: #cf496f;
}

.for-you-heading p:last-child {
  max-width: 740px;
  margin: 0 auto;
  color: var(--greige);
  font-family: var(--font-heading);
  line-height: 2.05;
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.for-you-grid article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 126px;
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 20px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 14px 42px rgba(118, 107, 102, .07);
  padding: 20px 24px;
}

.for-you-grid h3 {
  margin-bottom: 6px;
  color: #cf496f;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.for-you-grid p {
  margin: 0;
  color: var(--greige);
  font-size: 14px;
  line-height: 1.8;
}

.for-you-icon {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 189, 186, .42), rgba(242, 232, 230, .82));
}

.for-you-icon:before,
.for-you-icon:after {
  content: "";
  position: absolute;
  border: 1.7px solid #cf496f;
}

.icon-heart:before {
  width: 22px;
  height: 22px;
  left: 20px;
  top: 16px;
  border-radius: 50%;
}

.icon-heart:after {
  width: 24px;
  height: 18px;
  left: 22px;
  top: 34px;
  border-top: 0;
  border-radius: 0 0 20px 20px;
  transform: rotate(24deg);
}

.icon-money:before {
  width: 30px;
  height: 24px;
  left: 17px;
  top: 24px;
  border-radius: 11px 11px 9px 9px;
}

.icon-money:after {
  width: 18px;
  height: 12px;
  left: 23px;
  top: 17px;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.icon-ai:before {
  width: 31px;
  height: 22px;
  left: 16px;
  top: 22px;
  border-radius: 2px;
}

.icon-ai:after {
  width: 40px;
  height: 1px;
  left: 12px;
  top: 49px;
  border-width: 1.7px 0 0;
}

.icon-home:before {
  width: 28px;
  height: 24px;
  left: 18px;
  top: 28px;
  border-top: 0;
}

.icon-home:after {
  width: 24px;
  height: 24px;
  left: 20px;
  top: 17px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}

.icon-leaf:before {
  width: 28px;
  height: 18px;
  left: 17px;
  top: 23px;
  border-radius: 28px 0 28px 0;
  transform: rotate(22deg);
}

.icon-leaf:after {
  width: 1px;
  height: 28px;
  left: 32px;
  top: 27px;
  border-width: 0 0 0 1.7px;
}

.icon-people:before {
  width: 16px;
  height: 16px;
  left: 15px;
  top: 19px;
  border-radius: 50%;
  box-shadow: 18px 0 0 -1.7px rgba(255, 253, 248, .7), 18px 0 0 0 #cf496f;
}

.icon-people:after {
  width: 42px;
  height: 20px;
  left: 11px;
  top: 39px;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.for-you-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.for-you-action .button {
  min-width: 248px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d7557c, #c83e67);
  box-shadow: 0 16px 34px rgba(200, 62, 103, .18);
  letter-spacing: .14em;
}

.topics {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(216, 189, 186, .24), transparent 28rem),
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(250, 247, 241, .82));
}

.topics-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.topics-heading h2 {
  margin-bottom: 10px;
  font-family: var(--font-en);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: .08em;
}

.topics-heading p:last-child {
  max-width: 620px;
  margin-bottom: 0;
}

.topics-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  text-decoration: none;
  white-space: nowrap;
}

.topics-link:after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--champagne);
}

.topics-carousel {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.topics-track {
  display: grid;
  grid-auto-columns: minmax(236px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 22px;
}

.topics-track::-webkit-scrollbar {
  display: none;
}

.topic-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 22px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 18px 54px rgba(118, 107, 102, .08);
  scroll-snap-align: start;
}

.topic-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--mist-pink), var(--ivory));
}

.topic-thumbnail:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 168, 106, .28);
  border-radius: 18px;
}

.topic-thumbnail:after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  background: url("/assets/nagi-brand-mark.svg?v=20260622-logo2") center/contain no-repeat;
  opacity: .34;
}

.topic-thumbnail-pink {
  background: linear-gradient(135deg, #f7ebe9, #d8bdba);
}

.topic-thumbnail-gold {
  background: linear-gradient(135deg, #fff9ee, #e6d3a6);
}

.topic-thumbnail-ivory {
  background: linear-gradient(135deg, #fffdf8, #efe6da);
}

.topic-thumbnail-mauve {
  background: linear-gradient(135deg, #f5ecef, #b79aa3);
}

.topic-thumbnail-greige {
  background: linear-gradient(135deg, #f7f1ea, #c9bfba);
}

.topic-card-body {
  padding: 22px;
}

.topic-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

.topic-meta span {
  border-left: 1px solid rgba(201, 168, 106, .42);
  padding-left: 12px;
}

.topic-card h3 {
  display: -webkit-box;
  min-height: 3.05em;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--deep-mauve);
  font-size: 18px;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topic-card p {
  display: -webkit-box;
  min-height: 3.4em;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.topics-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 50%;
  background: rgba(255, 253, 248, .84);
  box-shadow: 0 12px 28px rgba(118, 107, 102, .08);
  color: var(--deep-mauve);
  cursor: pointer;
}

.topics-arrow-prev {
  left: -18px;
}

.topics-arrow-next {
  right: -18px;
}

.topics-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.topics-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(183, 154, 163, .38);
  padding: 0;
  cursor: pointer;
}

.topics-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--deep-mauve);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sea-card {
  inset: 0 16% 14% 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .34), rgba(255, 253, 248, .08)),
    radial-gradient(circle at 22% 18%, rgba(255, 253, 248, .42), transparent 16rem),
    url("/assets/nagi-calm-sea.svg") center/cover no-repeat,
    linear-gradient(145deg, #e8dad6, #f7efe5);
  filter: sepia(.18) saturate(.92) hue-rotate(-8deg);
}

.note-card {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 48%;
  background:
    radial-gradient(circle at 30% 35%, #fffdf8 0 7%, transparent 8%),
    radial-gradient(circle at 76% 42%, rgba(183, 154, 163, .18) 0 13%, transparent 14%),
    linear-gradient(145deg, #fbf3eb, #dcc8c8);
}

.quote-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--champagne);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .74);
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 1.8;
  padding: 22px 24px;
}

.pillars {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 253, 248, .72), transparent 26rem),
    radial-gradient(circle at 82% 30%, rgba(216, 189, 186, .22), transparent 28rem),
    linear-gradient(180deg, rgba(250, 247, 241, .82), rgba(242, 232, 230, .42));
  padding-top: clamp(72px, 7vw, 104px);
}

.pillars .section-heading {
  margin-bottom: clamp(34px, 4.6vw, 48px);
}

.pillar-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.pillar-map article {
  min-height: 320px;
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 189, 186, .22), transparent 12rem),
    linear-gradient(180deg, rgba(255, 253, 248, .90), rgba(250, 247, 241, .76));
  box-shadow: 0 18px 54px rgba(118, 107, 102, .07);
  padding: clamp(30px, 4vw, 42px);
}

.pillar-label {
  margin: 24px 0 10px;
  color: #c94f73;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pillar-map h3 {
  margin-bottom: 18px;
  color: var(--deep-mauve);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
}

.pillar-map article > p:last-child {
  margin-bottom: 0;
  color: var(--greige);
  font-size: 16px;
  line-height: 1.95;
}

.pillar-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, rgba(255, 253, 248, .44), transparent 34px), #f8e8ea;
}

.pillar-icon:before,
.pillar-icon:after {
  display: none;
}

.pillar-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #c94f73;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.free-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.free-heading {
  max-width: 960px;
  margin-bottom: clamp(40px, 6vw, 66px);
}

.free-heading .eyebrow {
  margin-bottom: 18px;
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: none;
}

.free-heading h2 {
  margin-bottom: 20px;
  color: var(--greige);
  font-family: var(--font-en);
  font-size: clamp(58px, 10vw, 132px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: .08em;
}

.free-heading p:last-child {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.free-row a {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .82);
  box-shadow: var(--soft-shadow);
  padding: 24px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.free-row strong, .free-row span { display: block; }
.free-row strong {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
}
.free-row span {
  margin-top: 6px;
  color: var(--muted);
}

.academy-brand {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 253, 248, .82), transparent 30rem),
    radial-gradient(circle at 80% 26%, rgba(216, 189, 186, .30), transparent 34rem),
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(250, 247, 241, .76));
}

.academy-brand:after {
  content: "";
  position: absolute;
  inset: auto 12% 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, .46), transparent);
}

.academy-brand-title {
  width: min(1380px, 100%);
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.academy-brand-title h2 {
  margin-bottom: 20px;
  color: var(--greige);
  font-family: var(--font-en);
  font-size: clamp(58px, 10vw, 152px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: .045em;
  text-align: left;
  text-transform: uppercase;
}

.academy-brand-title h2 span {
  color: #c94f73;
}

.academy-brand-title > p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.65;
  letter-spacing: .06em;
}

.academy-brand-title > p span {
  color: #c94f73;
}

.academy-brand-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.academy-brand .academy-copy {
  max-width: 620px;
}

.academy-catch {
  margin-bottom: 22px;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.55vw, 46px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .05em;
}

.academy-catch span,
.academy-subcatch span {
  display: block;
  white-space: nowrap;
}

.academy-subcatch {
  margin-bottom: 26px;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.35vw, 30px);
  line-height: 1.7;
  letter-spacing: .07em;
}

.academy-body {
  display: grid;
  gap: 12px;
}

.academy-body p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.02;
}

.academy-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 42px);
}

.academy-mini-grid article {
  min-height: 184px;
  border: 1px solid rgba(229, 216, 208, .88);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 10%, rgba(248, 232, 234, .54), transparent 7rem),
    rgba(255, 253, 248, .80);
  box-shadow: 0 14px 42px rgba(118, 107, 102, .07);
  padding: 20px 18px;
}

.academy-mini-grid h3 {
  margin: 12px 0 10px;
  color: #c94f73;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .16em;
}

.academy-mini-grid p {
  margin: 0;
  color: var(--greige);
  font-size: 14px;
  line-height: 1.82;
}

.mini-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f8e8ea;
}

.mini-icon:before,
.mini-icon:after {
  content: "";
  position: absolute;
  border: 2px solid #c94f73;
}

.mini-heart:before {
  width: 22px;
  height: 22px;
  top: 14px;
  left: 15px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 5px;
  transform: rotate(45deg);
}

.mini-heart:after {
  width: 12px;
  height: 12px;
  top: 13px;
  left: 13px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 12px 0 0 0;
  box-shadow: 11px 0 0 -2px #f8e8ea, 11px 0 0 0 #c94f73;
}

.mini-money:before {
  width: 26px;
  height: 20px;
  left: 13px;
  top: 22px;
  border-radius: 10px 10px 8px 8px;
}

.mini-money:after {
  width: 14px;
  height: 10px;
  left: 19px;
  top: 15px;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.mini-ai:before {
  width: 25px;
  height: 18px;
  left: 14px;
  top: 15px;
  border-radius: 2px;
}

.mini-ai:after {
  width: 33px;
  height: 1px;
  left: 10px;
  top: 38px;
  border-width: 2px 0 0;
}

.academy-button {
  min-width: 246px;
  margin-top: clamp(28px, 4vw, 44px);
  border-radius: 999px;
  background: linear-gradient(135deg, #d75d83, #b83d67);
  box-shadow: 0 18px 42px rgba(200, 62, 103, .18);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .12em;
}

.academy-button:after {
  content: "→";
  margin-left: 28px;
  font-family: var(--font-body);
}

.academy-photo-wrap {
  position: relative;
}

.academy-photo-wrap:before {
  content: "";
  position: absolute;
  inset: -38px -32px auto auto;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  z-index: -1;
  border-radius: 50%;
  background: rgba(216, 189, 186, .38);
}

.academy-community-photo {
  width: 100%;
  height: clamp(430px, 42vw, 650px);
  border: 1px solid rgba(229, 216, 208, .90);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(118, 107, 102, .13);
  filter: sepia(.05) saturate(1.02) brightness(1.03);
  object-fit: cover;
  object-position: center;
}


.academy-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 2%, rgba(216, 189, 186, .36), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(201, 168, 106, .12), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #faf7f1 42%, #f4e7e7 100%);
}

.academy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 112px);
  padding-top: clamp(108px, 11vw, 158px);
  padding-bottom: clamp(74px, 8vw, 122px);
  text-align: left;
  background:
    radial-gradient(circle at 18% 4%, rgba(248, 232, 234, .5), transparent 30rem),
    radial-gradient(circle at 82% 30%, rgba(201, 168, 106, .13), transparent 36rem),
    linear-gradient(180deg, rgba(255,253,248,.92), rgba(250,247,241,.88));
}

.academy-hero-inner {
  width: min(920px, 100%);
}

.academy-hero-legacy {
  display: none;
}

.academy-hero-copy {
  position: relative;
  z-index: 1;
}

.academy-hero-kicker {
  margin: 0 0 clamp(26px, 4vw, 42px);
  color: var(--deep-mauve);
  font-family: var(--font-en);
  font-size: clamp(48px, 6.8vw, 112px);
  font-weight: 600;
  letter-spacing: .035em;
  line-height: .9;
  white-space: nowrap;
}

.academy-hero-kicker::first-letter {
  color: #c94f73;
}

.academy-hero h1 {
  margin-bottom: 30px;
  color: var(--greige);
  font-size: clamp(36px, 4.3vw, 62px);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1.42;
}

.academy-hero h1 span {
  color: #c94f73;
}

.academy-hero-subcopy {
  margin: -8px 0 22px;
  color: #c94f73 !important;
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 26px) !important;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.8;
}

.academy-hero p:not(.eyebrow):not(.academy-hero-kicker) {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 21px);
}

.academy-hero .hero-actions {
  justify-content: flex-start;
}

.academy-final .hero-actions {
  justify-content: center;
}

.academy-hero-visual {
  position: relative;
  isolation: isolate;
}

.academy-hero-visual:before {
  content: "";
  position: absolute;
  right: -5%;
  top: -8%;
  z-index: -1;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(216, 189, 186, .36);
}

.academy-hero-visual img {
  width: 100%;
  min-height: clamp(360px, 42vw, 620px);
  object-fit: cover;
  border: 1px solid rgba(229, 216, 208, .84);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.academy-origin {
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(86px, 10vw, 148px);
  background:
    radial-gradient(circle at 50% 8%, rgba(248, 232, 234, .52), transparent 28rem),
    linear-gradient(180deg, rgba(255, 253, 248, .62), rgba(250, 247, 241, .92));
}

.academy-origin-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.academy-origin-heading {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.academy-origin-heading .eyebrow {
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: .16em;
}

.academy-origin-heading h2 {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 400;
  letter-spacing: .045em;
}

.academy-origin-brand {
  color: var(--deep-mauve);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.academy-origin-brand-initial {
  color: #c94f73;
}

.academy-origin-video {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  width: min(920px, 100%);
  margin: 0 auto clamp(44px, 7vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 253, 248, .9), transparent 16rem),
    radial-gradient(circle at 82% 80%, rgba(201, 168, 106, .12), transparent 20rem),
    linear-gradient(135deg, rgba(248, 232, 234, .86), rgba(255, 253, 248, .92));
  box-shadow: var(--soft-shadow);
}

.academy-origin-video:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 48%, rgba(255,255,255,.2));
  pointer-events: none;
}

.academy-origin-play {
  position: relative;
  z-index: 1;
  width: clamp(58px, 7vw, 76px);
  height: clamp(58px, 7vw, 76px);
  border: 1px solid rgba(201, 168, 106, .34);
  border-radius: 50%;
  background: rgba(255, 253, 248, .76);
  box-shadow: 0 18px 44px rgba(134, 99, 105, .14);
}

.academy-origin-play:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--deep-mauve);
}

.academy-origin-video p {
  position: absolute;
  bottom: clamp(24px, 4vw, 44px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--deep-mauve);
  font-family: var(--font-en);
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: .06em;
}

.academy-origin-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  border-left: 1px solid rgba(201, 168, 106, .36);
  padding-left: clamp(24px, 4vw, 46px);
}

.academy-origin-copy p {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 2.05;
}

.academy-origin-emphasis {
  margin-top: clamp(34px, 5vw, 54px);
  padding-top: clamp(24px, 4vw, 34px);
  border-top: 1px solid rgba(201, 168, 106, .28);
}

.academy-origin-emphasis p {
  color: #c94f73;
  font-weight: 700;
  letter-spacing: .03em;
}

.academy-origin-afterword {
  margin-top: clamp(22px, 3vw, 34px);
}

.academy-section {
  position: relative;
}

.academy-section-heading {
  max-width: 840px;
  margin: 0 auto 48px;
  text-align: center;
}

.academy-section-heading h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
}

.academy-why {
  background:
    radial-gradient(circle at 18% 18%, rgba(248, 232, 234, .46), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(201, 168, 106, .13), transparent 34rem),
    linear-gradient(180deg, rgba(255, 253, 248, .84), rgba(250, 247, 241, .92));
}

.academy-why-heading {
  max-width: 1120px;
}

.academy-why-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 4.2vw, 60px);
  letter-spacing: .025em;
  line-height: 1.35;
  white-space: nowrap;
}

.academy-why-heading .eyebrow {
  font-size: clamp(15px, 1.35vw, 19px);
  letter-spacing: .16em;
}

.academy-why-heading > p:not(.eyebrow):not(.academy-why-message) {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 2;
}

.academy-why-message {
  margin: 0 auto 24px;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.8;
}

.academy-why-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 32px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.academy-why-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(229, 216, 208, .88);
  border-radius: 28px;
  background:
    radial-gradient(circle at 26% 0%, rgba(248, 232, 234, .64), transparent 16rem),
    rgba(255, 253, 248, .9);
  box-shadow: 0 22px 58px rgba(134, 99, 105, .09);
  padding: clamp(28px, 4vw, 44px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.academy-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 106, .38);
  box-shadow: 0 28px 72px rgba(134, 99, 105, .13);
}

.academy-why-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #f8e8ea;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.academy-why-card h3 {
  margin: 4px 0 22px;
  color: #c94f73;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: .06em;
}

.academy-why-excerpt {
  color: var(--greige);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.95;
}

.academy-readmore {
  margin-top: auto;
  padding-top: 18px;
}

.academy-readmore summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c94f73;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .08em;
  list-style: none;
  transition: opacity .25s ease, transform .25s ease;
}

.academy-readmore summary:hover {
  opacity: .78;
  transform: translateX(3px);
}

.academy-readmore summary::-webkit-details-marker {
  display: none;
}

.academy-readmore .read-close {
  display: none;
}

.academy-readmore[open] .read-open {
  display: none;
}

.academy-readmore[open] .read-close {
  display: inline;
}

.academy-readmore-body {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  border-top: 1px solid rgba(201, 168, 106, .22);
  padding-top: 24px;
  color: var(--greige);
  animation: academyReadOpen .34s ease both;
}

.academy-readmore-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.95;
}

.academy-readmore-body strong,
.academy-why-closing strong {
  color: #c94f73;
  font-weight: 700;
}

.academy-why-closing {
  width: min(860px, 100%);
  margin: clamp(48px, 7vw, 86px) auto 0;
  border-top: 1px solid rgba(201, 168, 106, .32);
  padding-top: clamp(32px, 5vw, 54px);
  text-align: center;
}

.academy-why-closing h3 {
  margin-bottom: 22px;
  color: var(--deep-mauve);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 400;
}

.academy-why-closing p {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 2;
}

@keyframes academyReadOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.academy-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.academy-why-copy {
  border-left: 1px solid rgba(201, 168, 106, .46);
  padding-left: clamp(24px, 4vw, 42px);
}

.academy-why-copy p {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 21px);
}

.academy-diagram {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(229, 216, 208, .86);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 253, 248, .96), transparent 12rem),
    linear-gradient(145deg, rgba(248, 232, 234, .88), rgba(255, 253, 248, .82));
  box-shadow: var(--soft-shadow);
}

.academy-diagram span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(201, 168, 106, .28);
  border-radius: 50%;
  background: rgba(255, 253, 248, .72);
  color: #c94f73;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .14em;
}

.academy-diagram span:nth-child(1) { top: 52px; left: 50%; transform: translateX(-50%); }
.academy-diagram span:nth-child(2) { bottom: 62px; left: 48px; }
.academy-diagram span:nth-child(3) { right: 48px; bottom: 62px; }

.academy-diagram strong {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: .08em;
}

.academy-power-grid,
.voice-grid,
.plan-grid,
.academy-steps {
  display: grid;
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.academy-power-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.academy-learning {
  background:
    radial-gradient(circle at 10% 10%, rgba(248, 232, 234, .46), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(201, 168, 106, .12), transparent 32rem),
    linear-gradient(180deg, rgba(255, 253, 248, .92), rgba(250, 247, 241, .86));
}

.academy-learning-heading {
  max-width: 940px;
}

.academy-learning-message {
  margin-top: 16px;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.8;
}

.academy-learning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 30px);
  width: min(1060px, 100%);
  margin: 0 auto;
}

.academy-learning-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(72px, 8vw, 104px) 1fr;
  gap: clamp(18px, 3.2vw, 38px);
  align-items: start;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .94), rgba(250, 247, 241, .82));
  box-shadow: 0 20px 54px rgba(134, 99, 105, .07);
  padding: clamp(24px, 4vw, 42px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.academy-learning-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 106, .38);
  box-shadow: 0 28px 70px rgba(134, 99, 105, .11);
}

.academy-learning-marker {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.academy-learning-marker:before {
  content: "";
  position: absolute;
  top: 58px;
  bottom: -42px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201, 168, 106, .5), rgba(248, 232, 234, .08));
}

.academy-learning-card:last-child .academy-learning-marker:before {
  display: none;
}

.academy-learning-marker span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(58px, 6vw, 72px);
  height: clamp(58px, 6vw, 72px);
  border: 1px solid rgba(201, 168, 106, .42);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(248, 232, 234, .92), rgba(255, 253, 248, .82));
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: 0 14px 34px rgba(134, 99, 105, .08);
}

.academy-learning-content {
  min-width: 0;
}

.academy-learning-card h3 {
  margin: 4px 0 12px;
  color: #c94f73;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: .06em;
}

.academy-learning-lead {
  max-width: 720px;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.9;
}

.academy-learning-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.academy-learning-tags span {
  border: 1px solid rgba(201, 168, 106, .24);
  border-radius: 999px;
  background: rgba(248, 232, 234, .52);
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 7px 12px;
}

.academy-learning-detail {
  margin-top: clamp(18px, 2.6vw, 28px);
  padding-top: 0;
}

.academy-learning-detail summary {
  display: inline-flex;
  color: #c94f73;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .08em;
  list-style: none;
  transition: opacity .25s ease, transform .25s ease;
}

.academy-learning-detail summary:hover {
  opacity: .78;
  transform: translateX(3px);
}

.academy-learning-detail summary::-webkit-details-marker {
  display: none;
}

.academy-learning-detail .read-close {
  display: none;
}

.academy-learning-detail[open] .read-open {
  display: none;
}

.academy-learning-detail[open] .read-close {
  display: inline;
}

.academy-learning-body {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 22px;
  border-top: 1px solid rgba(201, 168, 106, .22);
  padding-top: 24px;
  animation: academyReadOpen .34s ease both;
}

.academy-learning-body p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.95;
}

.academy-learning-list-title {
  color: #c94f73 !important;
  font-weight: 700;
}

.academy-learning-list {
  border-left: 1px solid rgba(201, 168, 106, .28);
  padding-left: 18px;
}

.academy-power-card,
.voice-card,
.plan-card,
.academy-steps article,
.academy-faq details {
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(248, 232, 234, .42), transparent 12rem),
    rgba(255, 253, 248, .80);
  box-shadow: var(--soft-shadow);
}

.academy-power-card {
  min-height: 420px;
  padding: clamp(30px, 4vw, 44px);
}

.academy-card-label,
.plan-time {
  color: #c94f73;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.academy-power-card h3,
.plan-card h3 {
  color: var(--deep-mauve);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
}

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

.academy-tags span {
  border: 1px solid rgba(201, 168, 106, .28);
  border-radius: 999px;
  background: rgba(250, 247, 241, .72);
  color: var(--greige);
  font-size: 13px;
  padding: 7px 12px;
}

.academy-voices {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 253, 248, .76), transparent 28rem),
    linear-gradient(180deg, rgba(250, 247, 241, .58), rgba(248, 232, 234, .42));
}

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

.voice-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding: 34px 28px;
}

.voice-photo {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 253, 248, .9);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(118, 107, 102, .12);
}

.voice-photo-1 { background: linear-gradient(145deg, #f8e8ea, #d8bdba); }
.voice-photo-2 { background: linear-gradient(145deg, #fffdf8, #e8d6d4); }
.voice-photo-3 { background: linear-gradient(145deg, #efe6da, #c9a86a); }

.voice-card p {
  margin: 0;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: 18px;
}

.voice-card span {
  color: var(--muted);
  font-size: 14px;
}

.voice-coming-soon {
  width: min(820px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 232, 234, .58), transparent 18rem),
    rgba(255, 253, 248, .9);
  box-shadow: var(--soft-shadow);
  padding: clamp(42px, 7vw, 76px);
  text-align: center;
}

.voice-coming-label {
  margin: 0 0 18px;
  color: #c94f73;
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: .12em;
}

.voice-coming-soon h3 {
  margin-bottom: 18px;
  color: var(--deep-mauve);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
}

.voice-coming-soon > p:not(.voice-coming-label) {
  width: min(580px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}

.voice-future-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.voice-future-fields span {
  border: 1px solid rgba(201, 168, 106, .24);
  border-radius: 999px;
  background: rgba(248, 232, 234, .48);
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 8px 13px;
}

.trial-band,
.academy-final > div {
  width: min(880px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(229, 216, 208, .88);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 253, 248, .86), transparent 20rem),
    linear-gradient(145deg, rgba(248, 232, 234, .76), rgba(255, 253, 248, .82));
  box-shadow: var(--soft-shadow);
  padding: clamp(36px, 7vw, 72px);
  text-align: center;
}

.trial-band h2,
.academy-final h2 {
  font-weight: 400;
}

.trial-band p,
.academy-final p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.plan-price {
  margin: 0 0 22px;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: 24px;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: var(--muted);
  line-height: 1.7;
}

.plan-card li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: #c94f73;
  vertical-align: middle;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
  border-radius: 999px;
}

.step-guide-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(248, 232, 234, .5), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(201, 168, 106, .14), transparent 34rem),
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(250, 247, 241, .9));
}

.step-guide-heading {
  max-width: 980px;
}

.step-guide-heading p:not(.eyebrow) {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}

.step-guide-layout {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(18px, 3.5vw, 42px);
  width: min(1060px, 100%);
  margin: 0 auto;
}

.step-guide-timeline {
  position: sticky;
  top: 96px;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  justify-items: center;
  align-self: start;
  padding-top: 18px;
}

.step-guide-timeline:before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201, 168, 106, .22), rgba(201, 168, 106, .5), rgba(248, 232, 234, .18));
}

.step-guide-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 168, 106, .38);
  border-radius: 50%;
  background: rgba(255, 253, 248, .92);
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  box-shadow: 0 14px 34px rgba(134, 99, 105, .08);
}

.step-guide-list {
  display: grid;
  gap: clamp(18px, 2.8vw, 30px);
}

.step-guide-group-heading {
  margin: 0 0 -8px;
}

.step-guide-group-heading p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: .08em;
}

.step-guide-group-heading p:after {
  content: "";
  width: clamp(48px, 8vw, 96px);
  height: 1px;
  background: rgba(201, 168, 106, .48);
}

.step-guide-group-heading-optional {
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.step-guide-optional {
  border: 1px solid rgba(229, 216, 208, .7);
  border-radius: 32px;
  background: rgba(255, 253, 248, .46);
  padding: clamp(22px, 3vw, 34px);
}

.step-guide-optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.step-guide-optional-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 16px 42px rgba(134, 99, 105, .06);
  padding: clamp(24px, 3vw, 34px);
}

.step-guide-optional-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.step-guide-card {
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(248, 232, 234, .46), transparent 16rem),
    rgba(255, 253, 248, .9);
  box-shadow: 0 22px 58px rgba(134, 99, 105, .08);
  padding: clamp(26px, 4vw, 44px);
}

.step-guide-card-primary {
  border-color: rgba(201, 168, 106, .34);
  background:
    radial-gradient(circle at 86% 6%, rgba(201, 168, 106, .12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(248, 232, 234, .72));
}

.step-guide-number {
  margin: 0 0 12px;
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.step-guide-card h3 {
  margin: 0 0 16px;
  color: var(--deep-mauve);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: .04em;
}

.step-guide-card p {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.95;
}

.step-guide-card .button {
  margin-top: clamp(14px, 2.4vw, 24px);
  border-radius: 999px;
}

.step-guide-card .line-cta-button {
  min-width: min(360px, 100%);
  background: linear-gradient(135deg, #d8a7b2, #b77989);
  color: var(--warm-white);
  box-shadow: 0 18px 42px rgba(183, 121, 137, .18);
}

.step-guide-card .line-cta-button:hover {
  background: linear-gradient(135deg, #cf8f9e, #a96778);
}

.step-guide-note {
  margin: 14px 0 0;
  color: var(--muted) !important;
  font-size: clamp(13px, 1.25vw, 15px) !important;
  line-height: 1.75 !important;
}

.step-guide-price {
  color: #c94f73 !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 700;
}

.step-guide-roadmap h4 {
  margin: clamp(22px, 3vw, 34px) 0 18px;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 700;
  letter-spacing: .06em;
}

.step-guide-course-list {
  display: grid;
  gap: 14px;
}

.step-guide-course-list div {
  border-left: 1px solid rgba(201, 168, 106, .36);
  border-radius: 0 22px 22px 0;
  background: rgba(250, 247, 241, .72);
  padding: 18px 20px;
}

.step-guide-course-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .08em;
}

.step-guide-course-list strong {
  display: block;
  margin-bottom: 8px;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.1vw, 28px);
  letter-spacing: .06em;
}

.step-guide-course-list p {
  margin: 0 0 8px;
  color: var(--deep-mauve);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
}

.step-guide-course-list small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.trial-page {
  background: var(--ivory);
}

.trial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(84px, 8vw, 118px);
  padding-bottom: clamp(46px, 5.2vw, 68px);
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .98) 0%, rgba(255, 253, 248, .94) 48%, rgba(250, 247, 241, .68) 100%),
    radial-gradient(circle at 12% 16%, rgba(248, 232, 234, .58), transparent 30rem),
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(250, 247, 241, .9));
}

.trial-hero-copy {
  max-width: 640px;
}

.trial-hero h1 {
  margin: 0 0 16px;
  color: var(--deep-mauve);
  font-size: clamp(72px, 7.1vw, 112px);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.02;
  white-space: nowrap;
}

.trial-ribbon {
  display: inline-block;
  margin: 0 0 clamp(24px, 3vw, 32px);
  background: linear-gradient(90deg, #ad7181, #c94f73);
  color: #fffdf8 !important;
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 28px) !important;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4 !important;
  padding: 6px 18px 8px;
  box-shadow: 0 12px 32px rgba(173, 113, 129, .16);
}

.trial-catch {
  max-width: 620px;
  margin: 0 0 clamp(14px, 2vw, 22px);
  color: var(--deep-mauve) !important;
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.6vw, 38px) !important;
  letter-spacing: .08em;
  line-height: 1.6;
}

.trial-catch::first-letter {
  color: #c94f73;
}

.trial-hero p:not(.eyebrow):not(.trial-ribbon):not(.trial-catch) {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 2;
}

.trial-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin: 0 0 clamp(24px, 3vw, 36px);
}

.trial-pillars div {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 106, .38);
  border-radius: 50%;
  background: rgba(255, 253, 248, .78);
  color: var(--deep-mauve);
  text-align: center;
  box-shadow: 0 16px 38px rgba(134, 99, 105, .07);
  padding: 16px;
}

.trial-pillars span {
  color: var(--champagne);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.trial-pillars strong {
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: .06em;
}

.trial-pillars small {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.65;
}

.trial-hero-checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-hero-checks li {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
}

.trial-hero-checks li:before {
  content: "✓";
  margin-right: 12px;
  color: #c94f73;
  font-weight: 700;
}

.trial-hero .button {
  margin-top: clamp(14px, 2vw, 22px);
  min-width: min(360px, 100%);
  justify-content: center;
}

.trial-hero-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  padding: 0;
}

.trial-hero-meta span {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.6;
  letter-spacing: .04em;
}

.trial-hero-meta span:before {
  content: "✓";
  margin-right: 10px;
  color: #c94f73;
  font-weight: 700;
}

.trial-hero-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 720px;
  justify-self: center;
}

.trial-hero-visual:before {
  content: "";
  position: absolute;
  right: -6%;
  top: -8%;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(216, 189, 186, .36);
}

.trial-hero-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center center;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 28px;
  box-shadow: 0 30px 82px rgba(134, 99, 105, .14);
  filter: saturate(.96) sepia(.08) brightness(1.04);
}

.trial-recommend-card {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: clamp(18px, 4vw, 56px);
  width: min(460px, 82%);
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 20px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 24px 58px rgba(83, 62, 60, .16);
  padding: clamp(20px, 2.4vw, 28px);
  backdrop-filter: blur(8px);
}

.trial-recommend-card p {
  margin: 0 0 16px;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: .08em;
  text-align: center;
}

.trial-recommend-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-recommend-card li {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.7;
}

.trial-recommend-card li:before {
  content: "✓";
  margin-right: 10px;
  color: var(--champagne);
  font-weight: 700;
}

.trial-detail {
  padding-top: clamp(52px, 5.4vw, 72px);
  padding-bottom: clamp(42px, 4.8vw, 58px);
  background:
    radial-gradient(circle at 84% 10%, rgba(248, 232, 234, .42), transparent 28rem),
    rgba(250, 247, 241, .9);
}

.trial-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  align-items: stretch;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.trial-panel,
.trial-summary-card {
  min-height: 100%;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(248, 232, 234, .48), transparent 14rem),
    rgba(255, 253, 248, .92);
  box-shadow: 0 22px 58px rgba(134, 99, 105, .08);
  padding: clamp(28px, 3.2vw, 40px);
}

.trial-panel h2,
.trial-summary-card h2 {
  margin: 0 0 18px;
  color: var(--deep-mauve);
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 400;
  line-height: 1.35;
}

.trial-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-list li {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.8;
}

.trial-list li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: #c94f73;
  vertical-align: middle;
}

.trial-program {
  display: grid;
  gap: 12px;
}

.trial-program div {
  border-left: 1px solid rgba(201, 168, 106, .36);
  border-radius: 0 20px 20px 0;
  background: rgba(250, 247, 241, .72);
  padding: 16px 18px;
}

.trial-program span {
  display: block;
  margin-bottom: 6px;
  color: #c94f73;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .14em;
}

.trial-program p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 20px);
}

.trial-summary {
  padding-top: clamp(38px, 4.6vw, 54px);
  padding-bottom: clamp(62px, 6.6vw, 88px);
  background: linear-gradient(180deg, rgba(250, 247, 241, .9), rgba(255, 253, 248, .96));
}

.trial-summary-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 3vw, 36px);
  text-align: center;
}

.trial-summary-card dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.trial-summary-card dl div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 106, .22);
  padding: 14px 0;
  text-align: left;
}

.trial-summary-card dt {
  color: var(--champagne);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .08em;
}

.trial-summary-card dd {
  margin: 0;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
}

.thanks-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(248, 232, 234, .62), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(201, 168, 106, .14), transparent 32rem),
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(250, 247, 241, .92));
}

.thanks-hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 92px);
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.thanks-card {
  width: min(920px, 100%);
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(248, 232, 234, .62), transparent 18rem),
    rgba(255, 253, 248, .9);
  box-shadow: 0 30px 82px rgba(134, 99, 105, .11);
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.thanks-card h1 {
  margin-bottom: 18px;
  color: var(--deep-mauve);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 1.35;
}

.thanks-lead {
  margin: 0 auto clamp(30px, 4vw, 46px);
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.9;
}

.thanks-next {
  width: min(680px, 100%);
  margin: 0 auto clamp(30px, 4vw, 46px);
  border: 1px solid rgba(216, 189, 186, .7);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(242, 232, 230, .62), rgba(255, 253, 248, .86));
  padding: clamp(26px, 4vw, 42px);
}

.thanks-next span {
  display: block;
  margin-bottom: 12px;
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.thanks-next h2 {
  margin-bottom: 12px;
  color: #c94f73;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 500;
  line-height: 1.45;
}

.thanks-next p {
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.8;
}

.thanks-button {
  min-width: min(320px, 100%);
  border-radius: 999px;
}

.thanks-notes {
  display: grid;
  gap: 10px;
  width: min(680px, 100%);
  margin: 0 auto 26px;
  text-align: left;
}

.thanks-notes p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  line-height: 1.85;
}

.thanks-notes p:before {
  content: "✓";
  margin-right: 10px;
  color: #c94f73;
  font-weight: 700;
}

.thanks-contact {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.thanks-contact a {
  color: var(--deep-mauve);
  text-decoration-color: rgba(201, 168, 106, .64);
  text-underline-offset: 4px;
}

.roadmap-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(248, 232, 234, .48), transparent 30rem),
    radial-gradient(circle at 88% 20%, rgba(201, 168, 106, .13), transparent 34rem),
    linear-gradient(180deg, rgba(255, 253, 248, .92), rgba(250, 247, 241, .86));
}

.roadmap-heading {
  max-width: 920px;
}

.roadmap-heading p:not(.eyebrow) {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.roadmap-course-visuals {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.roadmap-course-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 20px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 18px 46px rgba(134, 99, 105, .08);
}

.roadmap-course-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.95) sepia(.08) brightness(1.04);
}

.roadmap-course-visual-3 img {
  object-position: 45% 50%;
}

.roadmap-course-visual-6 img {
  object-position: 62% 48%;
}

.roadmap-course-visual-12 img {
  object-position: 50% 16%;
}

.roadmap-course-visual:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(92, 74, 70, .18));
  pointer-events: none;
}

.roadmap-course-visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 128px;
  border: 1px solid rgba(229, 216, 208, .86);
  border-radius: 999px;
  background: rgba(248, 232, 234, .92);
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: .08em;
  padding: 10px 18px;
  box-shadow: 0 12px 28px rgba(134, 99, 105, .1);
}

.roadmap-list {
  display: grid;
  gap: 24px;
  width: 100%;
  margin: 0;
}

.roadmap-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 4%, rgba(248, 232, 234, .5), transparent 18rem),
    rgba(255, 253, 248, .9);
  box-shadow: 0 22px 58px rgba(134, 99, 105, .09);
  padding: clamp(22px, 3.6vw, 38px);
}

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

.roadmap-plan {
  margin: 0;
  color: var(--champagne);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  margin: 0;
  color: var(--deep-mauve);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
}

.roadmap-stage {
  margin: 0;
  color: #c94f73;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: .08em;
}

.roadmap-price {
  margin: 0;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
}

.roadmap-card-body > p:not(.roadmap-plan):not(.roadmap-stage):not(.roadmap-price):not(.roadmap-note):not(.roadmap-status) {
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.9;
}

.roadmap-content {
  border-left: 1px solid rgba(201, 168, 106, .28);
  padding-left: 20px;
}

.roadmap-content p {
  margin: 0 0 10px;
  color: #c94f73;
  font-weight: 700;
}

.roadmap-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-content li {
  color: var(--muted);
  line-height: 1.75;
}

.roadmap-content li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: #c94f73;
  vertical-align: middle;
}

.roadmap-note,
.roadmap-status {
  margin: 0;
  border-radius: 18px;
  background: rgba(248, 232, 234, .52);
  color: var(--greige);
  font-size: 14px;
  line-height: 1.8;
  padding: 14px 16px;
}

.roadmap-status {
  color: #c94f73;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.roadmap-card .button {
  justify-self: start;
  margin-top: 8px;
  border-radius: 999px;
}

.roadmap-disabled {
  cursor: default;
  opacity: .54;
  pointer-events: none;
}

.roadmap-reassurance {
  width: min(720px, 100%);
  margin: clamp(34px, 5vw, 56px) auto 0;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 2;
  text-align: center;
}

.academy-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.academy-steps article {
  min-height: 190px;
  padding: 30px;
}

.academy-steps span {
  display: inline-flex;
  margin-bottom: 26px;
  border-radius: 999px;
  background: #c94f73;
  color: var(--warm-white);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 8px 14px;
}

.academy-steps h3 {
  color: var(--greige);
  font-size: 22px;
  font-weight: 400;
}

.academy-faq {
  display: grid;
  gap: 0;
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(229, 216, 208, .94);
}

.academy-faq details {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 26px 6px;
}

.academy-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  cursor: pointer;
  list-style: none;
}

.academy-faq summary::-webkit-details-marker {
  display: none;
}

.academy-faq summary:after {
  content: "+";
  color: #c94f73;
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 300;
}

.academy-faq details[open] summary:after {
  content: "−";
}

.academy-faq p {
  max-width: 760px;
  margin: 16px 0 0;
}

.academy-final {
  display: grid;
  place-items: center;
  min-height: 70vh;
}

.academy-final .button {
  margin-top: 24px;
  border-radius: 999px;
}

.video-frame {
  display: grid;
  place-items: center;
  min-height: 392px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .42), rgba(118, 107, 102, .04)),
    radial-gradient(circle at 30% 26%, rgba(255, 253, 248, .94), transparent 18rem),
    linear-gradient(145deg, rgba(216, 189, 186, .50), rgba(250, 247, 241, .82));
  box-shadow: var(--shadow);
  text-align: center;
}

.video-frame span {
  width: 72px;
  height: 72px;
  clip-path: polygon(28% 18%, 28% 82%, 82% 50%);
  background: var(--deep-mauve);
}

.video-frame p {
  margin: 16px 0 0;
  color: var(--deep-mauve);
  font-family: var(--font-en);
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.timeline div {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--soft-shadow);
  padding: 26px;
}

.timeline strong, .timeline span { display: block; }
.timeline strong {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
}
.timeline span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
}

.profile-card img {
  max-height: 620px;
  object-position: center top;
}

.values-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .72);
  color: var(--deep-mauve);
  line-height: 1.75;
  padding: 13px 16px;
}

.faq-grid details {
  cursor: pointer;
}

.faq-grid summary {
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.7;
}

.faq-grid p {
  margin: 14px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  min-height: 70vh;
  padding-top: clamp(92px, 9vw, 132px);
  padding-bottom: clamp(92px, 9vw, 132px);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 253, 248, .72), transparent 22rem),
    linear-gradient(135deg, rgba(183, 154, 163, .25), rgba(250, 247, 241, .78));
}

.final-cta.motif-section:before {
  display: none;
}

.final-cta > div:not(.video-frame) {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
}

.final-cta .video-frame {
  align-self: center;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-height: clamp(340px, 34vw, 460px);
}

.final-cta .hero-actions {
  margin-top: clamp(32px, 4vw, 48px);
}

.final-eyebrow {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: .14em;
}

.final-message span {
  display: block;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: clamp(94px, 9vw, 148px);
}

.story-hero h1 {
  max-width: 820px;
}

.story-hero-visual {
  position: relative;
}

.story-hero-visual:before {
  content: "";
  position: absolute;
  inset: -32px 26px 36px -30px;
  z-index: -1;
  border-radius: 44% 56% 46% 54%;
  background: linear-gradient(145deg, rgba(216, 189, 186, .42), rgba(250, 247, 241, .88));
}

.story-hero-visual img {
  width: 100%;
  max-height: 720px;
  border: 1px solid rgba(229, 216, 208, .94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: sepia(.12) saturate(1.04) brightness(1.04) hue-rotate(-4deg);
  object-fit: cover;
}

.story-chapter {
  max-width: 920px;
}

.story-prose {
  display: grid;
  gap: 18px;
}

.story-prose h2 {
  max-width: 820px;
}

.story-prose p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 2.15;
}

.story-image-band {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  height: clamp(360px, 46vw, 580px);
  margin: 0 auto;
}

.story-image-band .photo-card {
  inset: 0;
}

.story-video {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.story-closing {
  display: grid;
  place-items: center;
  min-height: 70vh;
  text-align: center;
}

.story-closing p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.story-closing.motif-section:before {
  width: 154px;
  height: 188px;
  margin-bottom: 50px;
  opacity: .98;
}

.story-closing h2 {
  margin-bottom: 42px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
}

.story-closing .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.story-closing .button {
  min-width: 178px;
  min-height: 54px;
  border-color: rgba(201, 168, 106, .42);
  border-radius: 999px;
  background: rgba(255, 253, 248, .62);
  box-shadow: 0 10px 28px rgba(118, 107, 102, .055);
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: .08em;
}

.story-closing .button:hover {
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 14px 34px rgba(118, 107, 102, .075);
}

.story-simple {
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 189, 186, .30), transparent 30rem),
    radial-gradient(circle at 90% 16%, rgba(201, 168, 106, .12), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #faf7f1 56%, #f4e7e7 100%);
}

.story-simple-hero {
  min-height: calc(100vh - 128px);
  padding-top: clamp(86px, 9vw, 132px);
  padding-bottom: clamp(96px, 10vw, 148px);
}

.story-simple-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.story-simple-copy {
  min-width: 0;
}

.story-simple-copy h1 {
  margin-bottom: 16px;
  color: var(--greige);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: .08em;
}

.story-simple-copy .lead {
  margin-bottom: clamp(34px, 5vw, 56px);
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: .08em;
}

.story-expand-body {
  position: relative;
  max-height: 620px;
  overflow: hidden;
  transition: max-height .55s ease;
}

.story-expand-body:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), #fffdf8 78%);
  pointer-events: none;
  transition: opacity .3s ease;
}

.story-simple-hero.is-open .story-expand-body {
  max-height: 9000px;
}

.story-simple-hero.is-open .story-expand-body:after {
  opacity: 0;
}

.story-text-chapter {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.story-chapter-label {
  margin-bottom: 10px;
  color: #c94f73;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-text-chapter h2 {
  margin-bottom: 24px;
  color: var(--deep-mauve);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: .05em;
}

.story-text-chapter p:not(.story-chapter-label) {
  margin-bottom: 18px;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 2.08;
  letter-spacing: .035em;
}

.story-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 26px;
  border: 1px solid rgba(201, 168, 106, .34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 93, 131, .94), rgba(184, 61, 103, .94));
  box-shadow: 0 16px 36px rgba(200, 62, 103, .14);
  color: var(--warm-white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .08em;
  padding: 14px 28px;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.story-toggle:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(200, 62, 103, .18);
}

.story-simple-visual {
  position: sticky;
  top: 138px;
}

.story-simple-visual img {
  width: 100%;
  max-height: 720px;
  border: 1px solid rgba(229, 216, 208, .92);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(118, 107, 102, .13);
  filter: sepia(.08) saturate(.98) brightness(1.02);
  object-fit: cover;
}

.story-book {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 253, 248, .94), transparent 32rem),
    linear-gradient(180deg, #fffdf8 0%, #faf7f1 28%, #f1e6e3 100%);
}

.story-opening {
  display: grid;
  place-items: center;
  min-height: 100vh;
  text-align: center;
}

.story-opening h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  font-family: var(--font-en);
  font-size: clamp(62px, 10vw, 132px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
}

.story-opening .lead {
  margin-left: auto;
  margin-right: auto;
  color: var(--deep-mauve);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: .08em;
}

.brand-story-chapter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 42vw) minmax(0, 1fr);
  min-height: 100vh;
  border-top: 1px solid rgba(229, 216, 208, .72);
  isolation: isolate;
}

.chapter-visual {
  position: sticky;
  top: 0;
  min-height: 100vh;
  background-color: var(--mist-pink);
  background-position: center;
  background-size: cover;
}

.chapter-visual:before,
.chapter-visual:after {
  content: "";
  position: absolute;
  inset: 0;
}

.chapter-visual:before {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .18), rgba(118, 107, 102, .18)),
    radial-gradient(circle at 52% 28%, rgba(255, 253, 248, .42), transparent 18rem);
}

.chapter-visual:after {
  inset: auto 12% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, .78), transparent);
}

.chapter-memory .chapter-visual,
.chapter-paper .chapter-visual {
  background-image:
    linear-gradient(180deg, rgba(250, 247, 241, .18), rgba(143, 116, 123, .22)),
    url("/assets/kurumi-profile.png");
  filter: sepia(.14) saturate(.92) brightness(1.06);
}

.chapter-gold .chapter-visual,
.chapter-nagi .chapter-visual {
  background-image:
    radial-gradient(circle at 50% 34%, rgba(255, 253, 248, .76), transparent 18rem),
    url("/assets/nagi-brand-mark.svg?v=20260622-logo2"),
    linear-gradient(145deg, #fbf5ed, #e5cfca 58%, #f8f1ea);
  background-size: cover, min(46vw, 440px), cover;
  background-repeat: no-repeat;
  background-position: center, center 44%, center;
}

.chapter-night .chapter-visual,
.chapter-silent .chapter-visual {
  background-image:
    linear-gradient(180deg, rgba(72, 65, 64, .08), rgba(72, 65, 64, .28)),
    radial-gradient(circle at 44% 26%, rgba(201, 168, 106, .22), transparent 13rem),
    linear-gradient(145deg, #eadbd7, #b79aa3 56%, #766b66);
}

.chapter-light .chapter-visual,
.chapter-future .chapter-visual {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, .38), rgba(201, 168, 106, .12)),
    url("/assets/nagi-calm-sea.svg"),
    linear-gradient(145deg, #fffdf8, #e8d6d4);
  filter: sepia(.2) saturate(.88) hue-rotate(-10deg);
}

.chapter-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(82px, 10vw, 148px) clamp(34px, 8vw, 132px);
  background:
    radial-gradient(circle at 86% 16%, rgba(201, 168, 106, .10), transparent 18rem),
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(250, 247, 241, .82));
}

.chapter-panel .eyebrow {
  margin-bottom: 22px;
  color: var(--champagne);
}

.chapter-panel h2 {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 70px);
  font-size: clamp(35px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.24;
  color: var(--deep-mauve);
}

.chapter-text {
  display: grid;
  gap: clamp(18px, 2.3vw, 32px);
  max-width: 720px;
}

.chapter-text p {
  margin: 0;
  color: var(--greige);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 2.18;
}

.chapter-text p:nth-child(2n) {
  padding-left: clamp(0px, 2.4vw, 34px);
}

.chapter-text p:has(strong),
.chapter-text p em {
  color: var(--deep-mauve);
}

.brand-story-chapter:nth-of-type(even) .chapter-panel {
  background:
    radial-gradient(circle at 14% 24%, rgba(216, 189, 186, .18), transparent 22rem),
    linear-gradient(180deg, rgba(250, 247, 241, .92), rgba(255, 253, 248, .80));
}

.chapter-origin {
  display: block;
  min-height: auto;
  padding: clamp(24px, 4vw, 56px) clamp(18px, 5vw, 72px) clamp(96px, 13vw, 172px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 248, .88), transparent 34rem),
    linear-gradient(180deg, rgba(250, 247, 241, .96), rgba(241, 230, 227, .62));
}

.chapter-origin-visual {
  position: relative;
  min-height: min(88vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(229, 216, 208, .86);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(48, 42, 38, .06), rgba(48, 42, 38, .18)),
    url("/assets/story-chapter1-origin.png") center 42% / cover no-repeat;
  box-shadow: 0 36px 110px rgba(80, 65, 57, .16);
  filter: sepia(.08) saturate(.94) brightness(1.02);
}

.chapter-origin-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 31, 28, .32), transparent 42%),
    radial-gradient(circle at 50% 20%, rgba(255, 253, 248, .10), transparent 24rem);
  pointer-events: none;
}

.chapter-origin-label {
  position: absolute;
  top: clamp(28px, 5vw, 62px);
  left: clamp(26px, 5vw, 68px);
  z-index: 1;
  color: var(--warm-white);
  text-shadow: 0 2px 18px rgba(43, 35, 31, .42);
}

.chapter-origin-label span,
.chapter-origin-label strong {
  display: block;
}

.chapter-origin-label span {
  margin-bottom: 10px;
  font-family: var(--font-en);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.chapter-origin-label strong {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: .12em;
}

.chapter-origin-panel {
  min-height: auto;
  padding: clamp(72px, 9vw, 122px) 0 0;
  background: transparent;
}

.chapter-origin-panel .chapter-text {
  max-width: 760px;
  margin: 0 auto;
}

.chapter-origin-panel .chapter-text p {
  transition-delay: .16s;
}

.closing { min-height: 310px; }

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 253, 248, .18), transparent 28rem),
    linear-gradient(135deg, #bd3f68, #aa315b);
  color: var(--warm-white);
  padding: clamp(58px, 7vw, 92px) 16px 42px;
}

.footer-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.footer-brand img {
  width: auto;
  height: 118px;
  border-radius: 10px;
  background: rgba(255, 253, 248, .94);
  filter: none;
  opacity: 1;
  padding: 10px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 253, 248, .84);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: .08em;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  margin-bottom: 44px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 253, 248, .94);
  color: #b63a63;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.footer-social a:hover {
  opacity: .78;
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(80, 28, 50, .18);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 248, .34);
  padding-top: 28px;
  margin-bottom: 28px;
}

.footer-legal a {
  color: rgba(255, 253, 248, .9);
  padding: 0 28px;
  font-family: var(--font-heading);
  text-decoration: none;
}

.footer-legal a + a {
  border-left: 1px solid rgba(255, 253, 248, .36);
}

.footer-company {
  display: grid;
  gap: 4px;
  margin: 0 auto 26px;
  color: rgba(255, 253, 248, .86);
  font-style: normal;
  line-height: 1.85;
}

.footer-company strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
}

.footer-company a {
  color: inherit;
  text-decoration: none;
}

.footer-copy {
  position: relative;
  margin: 0;
  color: rgba(255, 253, 248, .78);
  font-family: var(--font-en);
  font-size: 15px;
}

.footer-copy:before {
  content: "✦";
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 253, 248, .9);
  font-family: var(--font-heading);
}

.simple-page {
  min-height: 56vh;
  padding-top: clamp(96px, 10vw, 148px);
}

.simple-page-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 24px;
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--soft-shadow);
  padding: clamp(34px, 6vw, 64px);
}

.simple-page-inner h1 {
  margin-bottom: 28px;
  font-size: clamp(38px, 5vw, 62px);
}

.policy-page {
  min-height: 70vh;
  padding-top: clamp(96px, 10vw, 148px);
  padding-bottom: clamp(96px, 10vw, 148px);
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 189, 186, .28), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(201, 168, 106, .12), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, var(--ivory) 100%);
}

.policy-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(229, 216, 208, .9);
  border-radius: 24px;
  background: rgba(255, 253, 248, .82);
  box-shadow: var(--soft-shadow);
  padding: clamp(34px, 6vw, 72px);
}

.policy-inner h1 {
  margin-bottom: 30px;
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 400;
}

.policy-inner h2 {
  margin-bottom: 18px;
  color: var(--deep-mauve);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
}

.policy-inner p,
.policy-inner li {
  color: var(--greige);
  font-size: 16px;
  line-height: 2;
}

.policy-inner ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
  padding-left: 1.3em;
}

.policy-inner section {
  margin: 0;
}

.policy-inner hr {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, .38), transparent);
  margin: clamp(28px, 5vw, 48px) 0;
}

.terms-page .policy-inner h2 {
  color: var(--champagne);
}

.legal-page .policy-inner h2 {
  color: var(--champagne);
  font-size: clamp(20px, 2.1vw, 26px);
}

.legal-page .policy-inner a {
  color: var(--deep-mauve);
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 106, .42);
  text-underline-offset: 5px;
  transition: color .25s ease, opacity .25s ease;
}

.legal-page .policy-inner a:hover {
  color: var(--rose);
  opacity: .82;
}

.legal-item p + p {
  margin-top: 8px;
}

.policy-bullets {
  padding-left: .25em;
}

.policy-signature {
  margin-top: clamp(34px, 6vw, 56px) !important;
  border-top: 1px solid rgba(201, 168, 106, .26);
  padding-top: clamp(28px, 5vw, 42px);
}

.policy-signature p {
  margin-bottom: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 980px) {
  .site-nav { display: none; }
  .hero, .split, .final-cta, .story-intro-grid, .story-hero, .story-video { grid-template-columns: 1fr; }
  .final-cta > div:not(.video-frame),
  .final-cta .video-frame {
    grid-column: auto;
    grid-row: auto;
  }
  .academy-brand-layout {
    grid-template-columns: 1fr;
  }
  .academy-brand .academy-copy {
    max-width: none;
  }
  .academy-hero {
    grid-template-columns: 1fr;
  }
  .trial-hero,
  .trial-detail-grid {
    grid-template-columns: 1fr;
  }
  .trial-hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 52px;
  }
  .trial-hero-visual {
    order: 0;
    max-width: 100%;
  }
  .trial-hero-visual img {
    min-height: 0;
    border-radius: 22px;
  }
  .trial-hero h1 {
    font-size: clamp(52px, 15vw, 76px);
    white-space: nowrap;
  }
  .trial-ribbon {
    font-size: 18px !important;
    padding: 7px 12px 8px;
  }
  .trial-catch {
    font-size: clamp(23px, 6.8vw, 34px) !important;
  }
  .trial-hero-meta {
    gap: 6px;
    margin-bottom: 18px;
  }
  .trial-detail {
    padding-top: 52px;
    padding-bottom: 42px;
  }
  .trial-panel,
  .trial-summary-card {
    padding: 26px 22px;
  }
  .trial-summary {
    padding-top: 38px;
    padding-bottom: 64px;
  }
  .thanks-hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 70px;
  }
  .thanks-card {
    border-radius: 24px;
    padding: 30px 20px;
  }
  .thanks-next {
    border-radius: 22px;
    padding: 24px 18px;
  }
  .trial-summary-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }
  .step-guide-optional {
    border-radius: 24px;
    padding: 20px 16px;
  }
  .step-guide-optional-grid {
    grid-template-columns: 1fr;
  }
  .step-guide-group-heading p {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .step-guide-group-heading p:after {
    width: 72px;
  }
  .academy-hero-visual {
    order: -1;
  }
  .academy-photo-wrap {
    order: -1;
  }
  .academy-community-photo {
    height: clamp(380px, 62vw, 620px);
  }
  .academy-why-grid,
  .academy-why-card-grid,
  .academy-learning-grid,
  .academy-power-grid,
  .voice-grid,
  .academy-steps {
    grid-template-columns: 1fr;
  }
  .academy-learning-card {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    border-radius: 24px;
    padding: 22px 18px 24px;
  }
  .academy-learning-marker:before {
    top: 50px;
    bottom: -30px;
  }
  .academy-learning-marker span {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .academy-learning-tags {
    gap: 8px;
  }
  .academy-learning-tags span {
    font-size: 12px;
    padding: 6px 10px;
  }
  .roadmap-card {
    grid-template-columns: 1fr;
  }
  .step-guide-layout {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }
  .step-guide-timeline {
    top: 82px;
    gap: 34px;
  }
  .step-guide-timeline span {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
  .step-guide-card,
  .roadmap-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .roadmap-course-visuals {
    position: static;
    gap: 14px;
  }
  .roadmap-course-visual {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }
  .roadmap-course-visual figcaption {
    left: 14px;
    bottom: 14px;
    min-width: 112px;
    padding: 9px 15px;
  }
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-diagram {
    min-height: 360px;
  }
  .for-you-grid { width: min(820px, 100%); }
  .topics-track { grid-auto-columns: minmax(270px, 42%); }
  .brand-story-chapter { grid-template-columns: 1fr; }
  .story-simple-layout {
    grid-template-columns: 1fr;
  }
  .story-simple-visual {
    position: relative;
    top: auto;
    order: -1;
    max-width: 620px;
    margin: 0 auto;
  }
  .story-simple-visual img {
    max-height: 620px;
  }
  .chapter-visual {
    position: relative;
    min-height: 58vh;
  }
  .chapter-panel {
    min-height: auto;
    padding: clamp(74px, 12vw, 112px) clamp(24px, 7vw, 72px);
  }
  .chapter-origin {
    padding-left: 16px;
    padding-right: 16px;
  }
  .chapter-origin-visual {
    min-height: 72vh;
    background-position: center top;
  }
  .chapter-origin-panel {
    padding: 68px clamp(18px, 6vw, 48px) 0;
  }
  .chapter-panel h2 {
    margin-bottom: 40px;
  }
  .hero {
    min-height: auto;
    padding-top: 70px;
    text-align: left;
  }
  .hero-documentary h1,
  .hero-documentary h2 {
    max-width: 820px;
  }
  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }
  .promise-grid, .icon-grid, .card-grid, .services, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floating-note { right: 12px; }
  .motif-section.split:before {
    position: static;
    margin: 0 auto 34px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: 100%;
    padding: 18px 18px 14px;
  }
  .brand-logo {
    height: 72px;
    border-radius: 16px;
  }
  .nav-cta { display: none; }
  .section, .section-band {
    width: min(100% - 24px, 1180px);
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .section-band {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .story-opening {
    min-height: 86vh;
    padding-left: 18px;
    padding-right: 18px;
  }
  .story-simple-hero {
    padding-top: 76px;
  }
  .story-simple-copy h1 {
    font-size: clamp(42px, 13vw, 66px);
  }
  .story-expand-body {
    max-height: 560px;
  }
  .story-text-chapter p:not(.story-chapter-label) {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 2;
  }
  .story-toggle {
    width: 100%;
  }
  .chapter-visual {
    min-height: 52vh;
    background-attachment: scroll;
  }
  .chapter-panel {
    padding: 68px 22px 86px;
  }
  .chapter-origin {
    padding-top: 18px;
    padding-bottom: 84px;
  }
  .chapter-origin-visual {
    min-height: 68vh;
    border-radius: 20px;
    background-position: 50% top;
  }
  .chapter-origin-label {
    top: 24px;
    left: 24px;
  }
  .chapter-origin-panel {
    padding: 56px 6px 0;
  }
  .chapter-text {
    gap: 20px;
  }
  .chapter-text p {
    font-family: var(--font-body);
    font-size: 17px;
    letter-spacing: .02em;
    line-height: 2.02;
  }
  .chapter-text p:nth-child(2n) {
    padding-left: 0;
  }
  .promise-grid, .icon-grid, .card-grid, .services, .faq-grid, .pillar-map, .timeline { grid-template-columns: 1fr; }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .academy-hero {
    min-height: auto;
    padding-top: 86px;
    text-align: left;
  }
  .academy-hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }
  .academy-hero-kicker {
    font-size: clamp(42px, 16vw, 74px);
    white-space: normal;
  }
  .academy-hero p:not(.eyebrow):not(.academy-hero-kicker) {
    margin-left: 0;
  }
  .academy-hero .hero-actions {
    justify-content: stretch;
  }
  .academy-hero-visual img {
    min-height: 280px;
    border-radius: 20px;
  }
  .academy-hero-visual:before {
    width: 58%;
    right: -14%;
    top: -10%;
  }
  .academy-origin {
    padding-top: 76px;
    padding-bottom: 92px;
  }
  .academy-origin-heading {
    text-align: left;
    margin-bottom: 30px;
  }
  .academy-origin-video {
    border-radius: 20px;
    margin-bottom: 38px;
  }
  .academy-origin-video p {
    bottom: 22px;
    font-size: 17px;
  }
  .academy-origin-copy {
    border-left: 0;
    padding-left: 0;
  }
  .academy-origin-copy p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 2;
  }
  .academy-section-heading {
    text-align: left;
  }
  .academy-why-heading h2 {
    font-size: clamp(31px, 8.2vw, 46px);
    white-space: normal;
  }
  .academy-why-copy {
    padding-left: 22px;
  }
  .academy-diagram {
    min-height: 320px;
  }
  .academy-diagram span {
    width: 92px;
    height: 92px;
    font-size: 16px;
  }
  .academy-diagram span:nth-child(2) { left: 20px; }
  .academy-diagram span:nth-child(3) { right: 20px; }
  .academy-power-card {
    min-height: auto;
  }
  .trial-band,
  .academy-final > div {
    border-radius: 26px;
    text-align: left;
  }
  .trial-band p,
  .academy-final p {
    margin-left: 0;
    margin-right: 0;
  }
  .for-you-grid { grid-template-columns: 1fr; }
  .for-you-grid article {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px;
  }
  .for-you-heading p:last-child br { display: none; }
  .topics-heading {
    display: block;
    margin-bottom: 30px;
  }
  .topics-link {
    margin-top: 16px;
  }
  .topics-track {
    grid-auto-columns: minmax(82vw, 1fr);
    padding-left: 2px;
    padding-right: 2px;
  }
  .topics-arrow {
    display: none;
  }
  .method-title {
    font-size: clamp(30px, 9vw, 42px);
  }
  .method-title > .method-line {
    white-space: normal;
  }
  .academy-brand-title h2 {
    font-size: clamp(54px, 16vw, 82px);
    line-height: 1.02;
    word-break: keep-all;
  }
  .academy-brand-title > p {
    font-size: clamp(23px, 7vw, 32px);
  }
  .academy-catch {
    font-size: clamp(26px, 7.4vw, 34px);
  }
  .academy-subcatch {
    font-size: clamp(20px, 6vw, 28px);
  }
  .academy-mini-grid {
    grid-template-columns: 1fr;
  }
  .academy-mini-grid article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    min-height: auto;
  }
  .academy-mini-grid h3 {
    margin-top: 0;
  }
  .academy-mini-grid p {
    grid-column: 2;
  }
  .academy-photo-wrap {
    order: 0;
  }
  .academy-community-photo {
    height: 360px;
    border-radius: 22px;
  }
  .button { width: 100%; }
  .hero-documentary h1,
  .hero-documentary h2 {
    letter-spacing: .04em;
    white-space: normal;
  }
  .hero .button.primary {
    min-width: 0;
  }
  .hero .button.primary:after {
    margin-left: auto;
  }
  .hero-visual img {
    border-radius: 0 72px 24px 24px;
  }
  .image-stack { min-height: 380px; }
  .note-card { width: 66%; }
  .free-row a { width: 100%; }
  .site-footer {
    padding-top: 54px;
  }
  .footer-brand {
    margin-bottom: 30px;
  }
  .footer-brand img {
    height: 96px;
  }
  .footer-social {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
  }
  .footer-social a {
    width: 54px;
    height: 54px;
    font-size: 14px;
  }
  .footer-legal {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
  }
  .footer-legal a {
    padding: 0;
  }
  .footer-legal a + a {
    border-left: 0;
  }
  .footer-company {
    margin-bottom: 28px;
    font-size: 14px;
  }
}

