:root {
    --navy: #000848;
    --navy-soft: #1a2158;
    --teal: #00a8a8;
    --teal-deep: #008f8f;
    --purple: #c868c0;
    --purple-soft: #f6e6f4;
    --coral: #f03828;
    --coral-deep: #d42e20;
    --paper: #f5f4fb;
    --paper-deep: #e8e7f2;
    --cream: #ffffff;
    --ink: #000848;
    --ink-soft: #2a3160;
    --muted: #5c6180;
    --forest: var(--navy);
    --leaf: var(--teal);
    --moss: var(--teal-deep);
    --sprout: var(--purple-soft);
    --clay: var(--coral);
    --clay-hover: var(--coral-deep);
    --line: rgba(0, 8, 72, 0.12);
    --shadow: 0 18px 50px rgba(0, 8, 72, 0.12);
    --radius: 18px;
    --header-h: 72px;
    --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
    --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 12px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: rgba(0, 8, 72, 0.12);
}

body.is-locked {
    overflow: hidden;
}

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

a {
    color: var(--leaf);
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a.btn,
.menu-toggle,
.story-chip,
.nav-mobile a,
.float-card-min,
.float-card-open,
.icon-close {
    touch-action: manipulation;
}

.wrap {
    width: min(1200px, calc(100% - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    margin: 0 auto;
}

.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 80;
    padding: 10px 14px;
    background: var(--cream);
    color: var(--ink);
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--leaf);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.lede,
.section-desc {
    color: var(--ink-soft);
    max-width: 38em;
}

.section-head {
    max-width: min(920px, 100%);
    margin-bottom: 48px;
    container-type: inline-size;
}

.section-head h2,
.about h2,
.cta-inner h2 {
    font-size: clamp(26px, 4.8cqi, 44px);
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--forest);
    color: var(--cream);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.tag-quiet {
    background: var(--paper-deep);
    color: var(--ink-soft);
}

.tag-sprout {
    background: var(--sprout);
    color: var(--forest);
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-clay {
    background: var(--clay);
    color: #fff;
}

.btn-clay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.38), transparent 75%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
}

.btn-clay:hover::after {
    transform: translateX(130%);
}

.btn-clay:hover {
    box-shadow: 0 10px 24px rgba(240, 56, 40, 0.28);
}

.btn-clay:hover {
    background: var(--clay-hover);
    color: #fff;
}

.btn-forest {
    background: var(--forest);
    color: var(--cream);
}

.btn-forest:hover {
    background: var(--navy-soft);
    color: var(--cream);
}

.btn-ghost,
.btn-ghost-light {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost-light {
    border-color: rgba(255, 252, 246, 0.28);
    color: var(--cream);
}

.btn-block {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: var(--header-h);
    height: auto;
    padding-top: env(safe-area-inset-top, 0px);
    background: var(--paper);
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

body.is-locked .site-header {
    background: var(--paper);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 8, 72, 0.08);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 20px;
}

.brand-name {
    display: grid;
    min-width: 0;
    line-height: 1.15;
}

.brand-en {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.brand img {
    width: 42px;
    height: 42px;
    transition: transform 0.4s ease;
}

.brand:hover img {
    transform: rotate(-8deg) scale(1.06);
}

.nav-desktop {
    display: none;
    gap: 22px;
    margin-left: auto;
}

.nav-desktop a,
.nav-mobile a,
.site-footer nav a {
    position: relative;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-desktop a:hover::after {
    transform: scaleX(1);
}

.nav-desktop a:hover,
.nav-mobile a:hover,
.site-footer nav a:hover {
    color: var(--leaf);
}

.header-cta {
    display: none;
}

.menu-toggle {
    margin-left: auto;
    flex: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 39;
    gap: 4px;
    padding: 8px max(20px, env(safe-area-inset-right, 0px)) calc(28px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    background: color-mix(in srgb, var(--paper) 96%, transparent);
    backdrop-filter: blur(18px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.nav-mobile:not([hidden]) {
    display: flex;
    flex-direction: column;
}

.nav-mobile a,
.nav-mobile .btn {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.nav-mobile .btn {
    margin-top: auto;
    justify-content: center;
    width: 100%;
    border-bottom: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 32px;
    background:
        radial-gradient(circle at 88% 8%, rgba(200, 104, 192, 0.22), transparent 34%),
        radial-gradient(circle at 72% 42%, rgba(0, 168, 168, 0.18), transparent 32%),
        radial-gradient(circle at 96% 70%, rgba(240, 56, 40, 0.12), transparent 28%),
        var(--paper);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(36px);
    opacity: 0.55;
}

.orb-purple {
    width: 220px;
    height: 220px;
    top: -40px;
    right: 8%;
    background: #c868c0;
    animation: orb-drift 14s ease-in-out infinite;
}

.orb-teal {
    width: 180px;
    height: 180px;
    top: 38%;
    right: 28%;
    background: #00a8a8;
    animation: orb-drift 18s ease-in-out infinite reverse;
}

.orb-coral {
    width: 140px;
    height: 140px;
    bottom: 8%;
    right: 4%;
    background: #f03828;
    animation: orb-drift 16s 0.6s ease-in-out infinite;
}

.hero-copy > * {
    animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.34s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.44s; }

.hero-grid {
    display: grid;
    gap: 32px;
}

.hero-copy {
    min-width: 0;
    container-type: inline-size;
}

.hero h1 {
    font-size: clamp(26px, 6.4cqi, 48px);
    line-height: 1.35;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 24px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.hero-points li::before {
    content: "·";
    margin-right: 8px;
    color: var(--leaf);
}

.hero-visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.rings {
    width: min(420px, 100%);
    animation: spin-slow 48s linear infinite;
}

.hero-logo-wrap {
    position: absolute;
    width: min(220px, 52%);
    will-change: transform;
    transition: transform 0.25s ease-out;
}

.hero-logo {
    width: 100%;
    height: auto;
    animation: float-y 5s ease-in-out infinite;
}

.rings circle {
    stroke-width: 1;
}

.float-card {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 36;
    width: min(280px, calc(100vw - 32px));
    padding: 20px 20px 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: rise 0.9s 0.5s both;
    transition: width 0.28s ease, padding 0.28s ease, border-radius 0.28s ease, opacity 0.25s ease;
}

.float-card.is-min {
    width: auto;
    padding: 0;
    border-radius: 999px;
}

.float-card.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.float-card-min {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
}

.float-card-open {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--clay);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.float-card.is-min .float-card-body,
.float-card.is-min .float-card-min {
    display: none;
}

.float-card:not(.is-min) .float-card-open {
    display: none;
}

.float-card-body .btn {
    margin-top: 16px;
}

.hero-card-kicker {
    color: var(--clay);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-card-title {
    font-family: var(--font-serif);
    font-size: 28px;
    margin: 8px 0 16px;
}

.pillars {
    padding: 24px 0 80px;
}

.pillars-grid {
    display: grid;
    gap: 16px;
}

.pillar {
    padding: 28px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.pillar h2 {
    font-size: 28px;
    margin: 14px 0 16px;
}

.pillar p {
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.pillar a {
    font-weight: 700;
    text-decoration: none;
}

.pillar.is-featured {
    background: var(--forest);
    color: var(--cream);
    border-color: transparent;
    border-top: 4px solid var(--coral);
}

.pillar.is-featured .tag {
    background: var(--teal);
    color: #fff;
}

.pillar.is-featured p,
.pillar.is-featured a {
    color: #d5d8ee;
}

.pillars-grid .pillar:nth-child(2) {
    border-top: 4px solid var(--teal);
}

.pillars-grid .pillar:nth-child(3) {
    border-top: 4px solid var(--purple);
}

.coaching,
.about,
.faq {
    padding: 88px 0;
}

.coaching {
    background: var(--cream);
}

.split {
    display: grid;
    gap: 16px;
    margin-bottom: 48px;
}

.fit-card {
    padding: 28px;
    border-radius: var(--radius);
    background: #e6f6f5;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.fit-card-alt {
    background: var(--paper);
}

.fit-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.fit-card ul {
    margin: 0;
    padding-left: 1.1em;
    color: var(--ink-soft);
}

.fit-card li + li {
    margin-top: 8px;
}

.steps {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0 0 56px;
    list-style: none;
    counter-reset: none;
}

.steps li {
    padding: 24px;
    border-top: 1px solid var(--line);
}

.steps span {
    display: block;
    color: var(--clay);
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 8px;
}

.steps li:nth-child(2) span {
    color: var(--teal);
}

.steps li:nth-child(3) span {
    color: var(--purple);
}

.steps li:nth-child(4) span {
    color: var(--navy);
}

.steps h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.steps p {
    color: var(--ink-soft);
}

.include {
    display: grid;
    gap: 28px;
    padding: 32px;
    background: var(--paper);
    border-radius: 24px;
}

.include h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.include > div p {
    color: var(--ink-soft);
}

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

.include-list li {
    display: grid;
    gap: 4px;
}

.include-list strong {
    font-family: var(--font-serif);
    font-size: 20px;
}

.include-list span {
    color: var(--ink-soft);
}

.coaching-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.courses {
    padding: 88px 0;
    background:
        linear-gradient(180deg, var(--paper) 0%, #efe6f6 100%);
}

.course-empty {
    text-align: center;
    padding: 48px 24px;
    margin-bottom: 28px;
    background: var(--cream);
    border: 1px dashed color-mix(in srgb, var(--leaf) 45%, var(--line));
    border-radius: 24px;
}

.sprout-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--leaf);
    animation: sway 3.2s ease-in-out infinite;
}

.course-empty h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.course-empty p {
    color: var(--muted);
}

.course-plan {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0 0 36px;
    list-style: none;
}

.course-plan li {
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-plan li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.course-plan h3 {
    font-size: 22px;
    margin: 12px 0 14px;
}

.course-plan p {
    color: var(--ink-soft);
}

.course-plan a {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    text-decoration: none;
}

.waitlist {
    padding: 28px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.waitlist label,
.drawer label {
    display: block;
    margin: 0 0 8px;
    font-weight: 700;
}

.waitlist-row {
    display: grid;
    gap: 10px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
}

textarea {
    min-height: 8.5em;
    resize: vertical;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23000848' d='M1.2 1.2 6 6l4.8-4.8' stroke='%23000848' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--leaf);
    outline-offset: 2px;
}

.form-note,
.form-msg {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
}

.form-msg.is-ok {
    color: var(--leaf);
}

.form-msg.is-err {
    color: var(--coral-deep);
}

.about-grid,
.faq-grid {
    display: grid;
    gap: 36px;
}

.about-grid > .reveal,
.cta-inner {
    container-type: inline-size;
    min-width: 0;
}

.about h2 {
    margin-bottom: 28px;
}

.about p + p {
    margin-top: 22px;
}

.about p {
    color: var(--ink-soft);
    max-width: 38em;
}

.mentor {
    margin: 0;
    padding: 28px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mentor:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 8, 72, 0.28);
}

.mentor-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.mentor strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 8px;
}

.mentor span {
    display: block;
    margin: 0 0 20px;
    color: #c868c0;
}

.mentor p {
    color: #d5d8ee;
}

.faq {
    background: var(--cream);
}

.faq-list details {
    border-top: 1px solid var(--line);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 18px 0;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::after {
    content: "+";
    flex: none;
    color: var(--teal);
    font-size: 22px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

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

.faq-list p {
    padding: 0 0 18px;
    color: var(--ink-soft);
}

.cta-band {
    padding: 88px 0;
    background: var(--forest);
    color: var(--cream);
}

.cta-inner h2 {
    margin-bottom: 24px;
}

.cta-inner p {
    color: #d5d8ee;
    max-width: 32em;
}

.site-footer {
    padding: 40px 0 calc(56px + env(safe-area-inset-bottom, 0px));
    background: #00062e;
    color: #c9cce0;
}

.footer-inner {
    display: grid;
    gap: 18px;
}

.site-footer .brand {
    color: var(--cream);
}

.site-footer .brand-en {
    color: #9aa0c0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.site-footer nav a,
.beian a {
    color: #c9cce0;
}

.copy,
.beian {
    margin: 0;
    font-size: 13px;
}

.beian {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.friend-links {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 18px;
    font-size: 13px;
}

.friend-links span {
    color: #8b90ae;
}

.friend-links a {
    color: #c9cce0;
    text-decoration: none;
}

.friend-links a:hover {
    color: var(--cream);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(20, 18, 14, 0.46);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.is-open {
    opacity: 1;
}

.drawer {
    position: fixed;
    z-index: 60;
    inset: auto 0 0;
    max-height: min(92dvh, 760px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px max(20px, env(safe-area-inset-right, 0px)) calc(28px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    background: var(--cream);
    border-radius: 24px 24px 0 0;
    box-shadow: var(--shadow);
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.drawer::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: var(--line);
}

.drawer.is-open {
    transform: none;
    opacity: 1;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.drawer-head h2 {
    font-size: 28px;
}

.drawer-lead {
    margin: 10px 0 22px;
    color: var(--ink-soft);
}

.drawer form {
    display: grid;
    gap: 6px;
}

.drawer label {
    margin-top: 10px;
}

.icon-close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
}

@media (min-width: 640px) {
    .title-line {
        white-space: nowrap;
    }
}

@media (min-width: 720px) {
    .pillars-grid,
    .steps,
    .course-plan,
    .skill-grid,
    .work-grid,
    .health-grid,
    .why-grid,
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .menu-toggle,
    .nav-mobile,
    .nav-mobile:not([hidden]) {
        display: none;
    }

    .nav-desktop,
    .header-cta {
        display: flex;
    }

    .nav-desktop {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: minmax(420px, 1.45fr) minmax(280px, 0.8fr);
        align-items: center;
        gap: 24px;
    }

    .split,
    .about-grid,
    .faq-grid,
    .include {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .waitlist-row {
        grid-template-columns: 1fr auto;
    }

    .drawer {
        inset: 0 0 0 auto;
        width: min(460px, 100%);
        max-height: none;
        border-radius: 0;
        padding: 36px 32px;
        transform: translateX(32px);
    }

    .drawer::before {
        display: none;
    }

    .drawer.is-open {
        transform: none;
    }
}

@media (min-width: 1080px) {
    .pillars-grid,
    .skill-grid,
    .work-grid,
    .health-grid,
    .stat-grid,
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .story-nav-row {
        justify-content: space-between;
    }
}

.story-nav {
    padding: 8px 0 56px;
}

.story-nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.story-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.story-chip span {
    color: var(--teal);
}

.story-chip:hover {
    transform: translateY(-2px);
    border-color: var(--teal);
    color: var(--ink);
}

.skills,
.works,
.health,
.why {
    padding: 88px 0;
}

.skills {
    background: var(--cream);
}

.skill-grid,
.work-grid,
.health-grid,
.why-grid,
.stat-grid {
    display: grid;
    gap: 16px;
}

.skill-card,
.work-card,
.health-card,
.why-card,
.stat-card {
    padding: 26px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.skill-card:hover,
.work-card:hover,
.health-card:hover,
.why-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.skill-card {
    border-top: 4px solid var(--teal);
}

.skill-card:nth-child(2) { border-top-color: var(--purple); }
.skill-card:nth-child(3) { border-top-color: var(--coral); }
.skill-card:nth-child(4) { border-top-color: var(--navy); }
.skill-card:nth-child(5) { border-top-color: var(--teal); }
.skill-card:nth-child(6) { border-top-color: var(--purple); }

.skill-no {
    display: block;
    margin-bottom: 10px;
    color: var(--teal);
    font-family: var(--font-serif);
    font-size: 20px;
}

.skill-card h3,
.work-card h3,
.health-card h3,
.why-card h3 {
    font-size: 24px;
    margin: 12px 0 16px;
}

.skill-card p,
.work-card p,
.health-card p,
.why-card p,
.stat-card p {
    color: var(--ink-soft);
}

.works {
    background:
        radial-gradient(circle at 8% 12%, rgba(200, 104, 192, 0.14), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(0, 168, 168, 0.12), transparent 26%),
        var(--paper);
}

.stat-card {
    text-align: center;
    background: var(--navy);
    border-color: transparent;
    color: var(--cream);
}

.stat-card p {
    color: #d5d8ee;
}

.stat-num {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1.1;
    color: #fff;
}

.work-card.is-lead {
    background: var(--navy);
    color: var(--cream);
    border-color: transparent;
    border-top: 4px solid var(--coral);
}

.work-card.is-lead p,
.work-card.is-lead a {
    color: #d5d8ee;
}

.work-card a {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    text-decoration: none;
}

.health {
    background: var(--cream);
}

.health-card {
    background: #f7f3fb;
}

.health-note {
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
}

.why-card span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.why-card:nth-child(2) span {
    color: var(--teal);
}

.why-card:nth-child(3) span {
    color: var(--purple);
}

.has-motion .reveal {
    opacity: 0;
    translate: 0 28px;
    transition:
        opacity 0.7s ease,
        translate 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        scale 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 1) * 90ms - 90ms);
}

.has-motion .reveal.from-left {
    translate: -36px 0;
}

.has-motion .reveal.from-right {
    translate: 36px 0;
}

.has-motion .reveal.from-scale {
    translate: 0;
    scale: 0.94;
}

.has-motion .reveal.is-in,
.has-motion .reveal-group.is-in .reveal {
    opacity: 1;
    translate: 0;
    scale: 1;
}

.has-motion .reveal-group.is-in .reveal:nth-child(1) { transition-delay: 0ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(2) { transition-delay: 90ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(3) { transition-delay: 180ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(4) { transition-delay: 270ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(5) { transition-delay: 360ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(6) { transition-delay: 450ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(7) { transition-delay: 540ms; }
.has-motion .reveal-group.is-in .reveal:nth-child(8) { transition-delay: 630ms; }

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

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

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

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-24px, 18px) scale(1.08); }
}

@keyframes sway {
    0%, 100% { transform: rotate(-6deg); }
    50% { transform: rotate(6deg); }
}

@media (max-width: 959px) {
    .wrap {
        width: min(1200px, calc(100% - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    }

    .hero {
        padding: 28px 0 16px;
    }

    .hero-visual {
        min-height: 220px;
    }

    .hero-logo-wrap {
        width: min(160px, 46%);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin: 22px 0 18px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .story-nav {
        padding: 4px 0 36px;
    }

    .story-nav-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: -12px;
        padding: 4px 12px 10px;
        scroll-snap-type: x proximity;
    }

    .story-nav-row::-webkit-scrollbar {
        display: none;
    }

    .story-chip {
        flex: none;
        scroll-snap-align: start;
    }

    .skills,
    .works,
    .health,
    .why,
    .coaching,
    .about,
    .faq,
    .courses,
    .cta-band {
        padding: 56px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .skill-card,
    .work-card,
    .health-card,
    .why-card,
    .stat-card,
    .fit-card,
    .course-plan li,
    .waitlist,
    .include,
    .mentor {
        padding: 20px;
    }

    .include {
        gap: 20px;
        border-radius: 18px;
    }

    .course-empty {
        padding: 32px 18px;
    }

    .course-empty h3,
    .include h3 {
        font-size: 22px;
    }

    .coaching-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .coaching-cta .btn {
        width: 100%;
    }

    .cta-inner .hero-actions .btn {
        width: 100%;
    }

    .faq-list summary {
        min-height: 52px;
        padding: 16px 0;
        font-size: 16px;
    }

    .site-footer {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .float-card:not(.is-min) {
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
        width: auto;
        padding: 18px 18px 16px;
    }

    .float-card.is-min {
        right: max(12px, env(safe-area-inset-right, 0px));
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
    }

    .has-motion .reveal.from-left,
    .has-motion .reveal.from-right {
        translate: 0 28px;
    }
}

@media (max-width: 479px) {
    :root {
        --header-h: 64px;
    }

    body {
        font-size: 16px;
    }

    .brand {
        font-size: 18px;
        min-width: 0;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .brand-en {
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(28px, 8.4vw, 36px);
        margin-bottom: 18px;
    }

    .hero-visual {
        min-height: 180px;
    }

    .orb-purple,
    .orb-teal,
    .orb-coral {
        width: 140px;
        height: 140px;
        filter: blur(28px);
    }

    .hero-card-title {
        font-size: 22px;
    }

    .stat-num {
        font-size: 36px;
    }

    .drawer-head h2 {
        font-size: 24px;
    }

    .header-inner > .btn {
        padding: 0 14px;
        font-size: 14px;
        min-height: 40px;
    }
}

@media (hover: none) {
    .btn:hover,
    .pillar:hover,
    .fit-card:hover,
    .course-plan li:hover,
    .skill-card:hover,
    .work-card:hover,
    .health-card:hover,
    .why-card:hover,
    .stat-card:hover,
    .story-chip:hover,
    .mentor:hover,
    .brand:hover img {
        transform: none;
        box-shadow: none;
    }

    .btn-clay:hover::after {
        transform: translateX(-130%);
    }

    .btn:active {
        transform: scale(0.98);
    }
}

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

    .btn:hover,
    .pillar:hover,
    .fit-card:hover,
    .course-plan li:hover,
    .skill-card:hover,
    .work-card:hover,
    .health-card:hover,
    .why-card:hover,
    .stat-card:hover,
    .story-chip:hover,
    .brand:hover img {
        transform: none;
    }

    .hero-copy > *,
    .float-card,
    .hero-logo,
    .rings,
    .orb,
    .sprout-icon {
        animation: none !important;
    }

    .float-card {
        transition: none;
    }

    .has-motion .reveal,
    .has-motion .reveal-group .reveal {
        opacity: 1;
        translate: 0;
        transition: none;
    }
}
