:root {
  --ivory: #fdf9f4;
  --cream: #f7efe8;
  --pink: #b8797f;
  --pink-dark: #966066;
  --pink-light: #ead8d7;
  --brown: #594541;
  --brown-light: #7b6660;
  --gold: #b89a68;
  --green: #788d7b;
  --white: #fff;
  --shadow: 0 18px 50px rgba(91, 62, 55, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown);
  background: var(--ivory);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .04em;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.5em; }
h1, h2, h3 { margin: 0; font-family: "Noto Serif JP", serif; font-weight: 600; line-height: 1.55; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(800px, calc(100% - 40px)); }
.section { padding: 120px 0; }
.soft-bg { background: var(--cream); }
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .25em;
  text-align: center;
  text-transform: uppercase;
}
.section-label::before, .section-label::after { content: ""; display: inline-block; width: 22px; height: 1px; margin: 0 10px 4px; background: currentColor; }
.section-label.light { color: #dfc79f; }
h2 { margin-bottom: 24px; font-size: clamp(27px, 4vw, 40px); letter-spacing: .08em; text-align: center; }
.section-intro { margin: 0 auto 56px; color: var(--brown-light); text-align: center; }
.mobile-only { display: none; }

.site-header {
  position: fixed; z-index: 20; top: 0; left: 0; display: flex; align-items: center; justify-content: space-between;
  width: 100%; height: 78px; padding: 0 5%; background: rgba(253,249,244,.93); border-bottom: 1px solid rgba(184,154,104,.2); backdrop-filter: blur(12px);
}
.logo { display: flex; align-items: center; gap: 10px; line-height: 1.15; }
.logo-mark { display: grid; place-items: center; width: 38px; height: 38px; color: var(--white); background: var(--pink); border-radius: 50% 50% 45% 55%; font-family: Georgia, serif; font-size: 20px; font-style: italic; }
.logo b { display: block; font-family: "Noto Serif JP", serif; font-size: 18px; letter-spacing: .14em; }
.logo small { display: block; margin-top: 4px; color: var(--gold); font-family: Georgia, serif; font-size: 8px; letter-spacing: .3em; text-transform: uppercase; }
.header-cta { padding: 10px 24px; color: #fff; background: var(--pink); border: 1px solid var(--pink); border-radius: 40px; font-size: 13px; transition: .3s; }
.header-cta:hover { color: var(--pink); background: transparent; }

.hero { position: relative; min-height: 800px; padding-top: 78px; overflow: hidden; background: #f7f0e8; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 80px; background: linear-gradient(transparent, var(--ivory)); }
.hero-image { position: absolute; top: 78px; right: 0; bottom: 0; width: 56%; background: url("assets/hero-mirai-stage.png") center center / cover no-repeat; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #f7f0e8 0%, rgba(247,240,232,.6) 14%, transparent 48%), linear-gradient(0deg, rgba(247,240,232,.35), transparent 35%); }
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; width: min(1180px, calc(100% - 60px)); min-height: 720px; margin: 0 auto; }
.hero-copy { width: 56%; padding: 70px 0 60px; }
.eyebrow { display: inline-block; margin: 0 0 20px; padding: 5px 15px; color: var(--pink-dark); background: rgba(255,255,255,.65); border: 1px solid var(--pink-light); border-radius: 30px; font-size: 12px; letter-spacing: .13em; }
.hero h1 { margin-bottom: 24px; font-size: clamp(35px, 4.2vw, 58px); letter-spacing: .08em; }
.hero h1 em { color: var(--pink-dark); font-style: normal; }
.hero-lead { margin-bottom: 16px; color: var(--pink-dark); font-family: "Noto Serif JP", serif; font-size: 22px; font-weight: 600; line-height: 1.7; }
.hero-description { max-width: 600px; margin-bottom: 22px; font-size: 14px; line-height: 1.9; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 8px 18px; max-width: 600px; margin: 0 0 28px; padding: 0; list-style: none; }
.hero-checks li { position: relative; padding-left: 20px; font-size: 12px; }
.hero-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 700; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row.centered { justify-content: center; }
.btn { display: flex; align-items: center; justify-content: center; min-width: 218px; min-height: 62px; padding: 10px 28px; border: 1px solid transparent; border-radius: 50px; font-size: 15px; font-weight: 600; letter-spacing: .08em; line-height: 1.3; box-shadow: 0 10px 25px rgba(91,62,55,.12); transition: transform .3s, box-shadow .3s, background .3s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(91,62,55,.2); }
.btn span { margin-right: 8px; font-size: 9px; font-weight: 400; writing-mode: vertical-rl; }
.btn-primary { color: #fff; background: var(--pink); }
.btn-outline { color: var(--pink-dark); background: rgba(255,255,255,.55); border-color: var(--pink); }
.cta-note { margin: 9px 0 0 20px; color: var(--brown-light); font-size: 10px; }
.scroll-guide { position: absolute; z-index: 3; bottom: 30px; left: 50%; color: var(--gold); font-family: Georgia, serif; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-guide span { display: block; width: 1px; height: 35px; margin: 0 auto 8px; background: var(--gold); }

.intro { background: var(--ivory); }
.intro-message { position: relative; padding: 45px 60px; text-align: center; }
.intro-message::before, .intro-message::after { content: "“"; position: absolute; color: var(--pink-light); font-family: Georgia, serif; font-size: 100px; line-height: 1; }
.intro-message::before { top: 0; left: 0; }
.intro-message::after { right: 0; bottom: -30px; transform: rotate(180deg); }
.serif-strong { color: var(--pink-dark); font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; line-height: 1.8; }

.worry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.worry-grid p { position: relative; display: grid; place-items: center; min-height: 125px; margin: 0; padding: 20px 10px; background: #fff; border: 1px solid rgba(184,154,104,.2); border-radius: 50%; box-shadow: 0 8px 25px rgba(91,62,55,.05); font-family: "Noto Serif JP", serif; font-size: 14px; line-height: 1.7; text-align: center; }
.worry-grid p::before { content: "✓"; position: absolute; top: 7px; color: var(--pink); font-family: sans-serif; font-size: 12px; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 55px; }
.value-card { position: relative; min-height: 300px; padding: 45px 28px 30px; background: #fff; border: 1px solid rgba(184,154,104,.2); box-shadow: var(--shadow); text-align: center; }
.value-card .number { position: absolute; top: -20px; left: 20px; color: var(--gold); font-family: Georgia, serif; font-size: 35px; font-style: italic; }
.line-icon { display: block; margin-bottom: 18px; color: var(--pink); font-family: Georgia, serif; font-size: 32px; }
.value-card h3 { min-height: 55px; margin-bottom: 15px; color: var(--pink-dark); font-size: 17px; }
.value-card p { margin: 0; color: var(--brown-light); font-size: 13px; line-height: 1.9; }

.mid-cta { padding: 65px 0; color: #fff; background: var(--pink); text-align: center; }
.mid-cta p { margin-bottom: 25px; font-family: "Noto Serif JP", serif; font-size: 23px; }
.btn-light { color: var(--pink-dark); background: #fff; }
.btn-line { color: #fff; background: var(--green); }

.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.future-grid div { position: relative; display: grid; place-items: center; min-height: 180px; padding: 30px 12px; overflow: hidden; background: rgba(255,255,255,.72); border: 1px solid #fff; text-align: center; }
.future-grid span { position: absolute; top: -16px; right: 5px; color: rgba(184,121,127,.12); font-family: Georgia, serif; font-size: 72px; font-style: italic; }
.future-grid p { position: relative; margin: 0; font-family: "Noto Serif JP", serif; font-size: 15px; }
.future-grid b { color: var(--pink-dark); font-size: 18px; }

.bonus { background: linear-gradient(135deg, #fffdf9, #f2e4df); }
.bonus-box { position: relative; padding: 70px 70px 60px; background: rgba(255,255,255,.82); border: 1px solid rgba(184,154,104,.45); box-shadow: var(--shadow); text-align: center; }
.bonus-box::before { content: ""; position: absolute; inset: 12px; pointer-events: none; border: 1px solid rgba(184,154,104,.2); }
.bonus-tag { position: absolute; top: -18px; left: 50%; margin: 0; padding: 5px 25px; color: #fff; background: var(--gold); border-radius: 30px; font-size: 12px; transform: translateX(-50%); white-space: nowrap; }
.bonus-highlight { margin: 30px 0; padding: 25px 10px; color: var(--pink-dark); background: var(--ivory); border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); font-family: "Noto Serif JP", serif; font-size: 20px; }
.bonus-highlight span { display: block; color: var(--gold); font-family: "Noto Sans JP", sans-serif; font-size: 11px; letter-spacing: .15em; }
.bonus-highlight strong { font-size: 34px; }
.bonus-box small { color: var(--brown-light); font-size: 10px; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 55px; }
.story-card { display: grid; grid-template-columns: 100px 1fr; gap: 25px; padding: 38px; background: #fff; border-radius: 4px; box-shadow: var(--shadow); }
.avatar { display: flex; align-items: center; justify-content: center; width: 95px; height: 95px; color: #fff; background: var(--pink); border: 5px solid var(--pink-light); border-radius: 50%; font-family: Georgia, serif; }
.avatar-two { background: var(--gold); border-color: #ede1cd; }
.avatar span { font-size: 32px; }
.avatar small { margin-left: 2px; font-size: 10px; }
.story-meta { margin-bottom: 5px; color: var(--gold); font-size: 11px; }
.story-card h3 { margin-bottom: 15px; color: var(--pink-dark); font-size: 20px; }
.story-card p:last-child { margin: 0; font-size: 13px; line-height: 2; }
.caption { margin: 20px 0 0; color: var(--brown-light); font-size: 10px; text-align: right; }

.reason-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; max-width: 850px; margin: 50px auto 0; padding: 0; list-style: none; }
.reason-list li { position: relative; padding: 20px 20px 20px 74px; background: #fff; border-bottom: 1px solid var(--pink-light); box-shadow: 0 8px 20px rgba(91,62,55,.06); font-family: "Noto Serif JP", serif; font-size: 15px; }
.reason-list span { position: absolute; top: 0; bottom: 0; left: 0; display: grid; place-items: center; width: 55px; color: #fff; background: var(--pink); font-family: Georgia, serif; font-size: 13px; }

.dark-bg { color: #fff; background: #66504b; }
.support .section-intro { color: #eadbd1; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.support-grid article { position: relative; padding: 42px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); }
.support-grid span { position: absolute; top: 12px; right: 20px; color: rgba(255,255,255,.12); font-family: Georgia, serif; font-size: 55px; }
.support-grid h3 { min-height: 60px; margin-bottom: 18px; color: #efdcc1; font-size: 19px; }
.support-grid p { margin: 0; color: #eee3dc; font-size: 13px; }

.message { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23b89a68' opacity='.18'/%3E%3C/svg%3E"), var(--ivory); }
.message-box { padding: 55px 70px; background: rgba(255,255,255,.78); border-left: 1px solid var(--gold); border-right: 1px solid var(--gold); box-shadow: var(--shadow); text-align: center; }
.message-box p { margin-bottom: 28px; }
.message-box .experience { color: var(--pink-dark); font-family: "Noto Serif JP", serif; font-size: 20px; line-height: 2; }
.signature { margin-top: 45px; padding-top: 25px; border-top: 1px solid var(--pink-light); text-align: right; }
.signature span, .signature b { display: block; }
.signature span { color: var(--gold); font-size: 10px; }
.signature b { font-family: "Noto Serif JP", serif; font-size: 14px; font-weight: 500; }

.faq-list { margin-top: 50px; border-top: 1px solid var(--pink-light); }
.faq details { background: rgba(255,255,255,.6); border-bottom: 1px solid var(--pink-light); }
.faq summary { position: relative; padding: 24px 60px 24px 25px; cursor: pointer; font-family: "Noto Serif JP", serif; font-size: 15px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 50%; right: 25px; color: var(--pink); font-family: sans-serif; font-size: 24px; font-weight: 300; transform: translateY(-50%); }
.faq details[open] summary::after { content: "−"; }
.faq summary span, .faq details p span { margin-right: 12px; color: var(--pink); font-family: Georgia, serif; font-size: 18px; }
.faq details p { display: flex; margin: 0; padding: 0 25px 25px; color: var(--brown-light); font-size: 13px; }

.final-cta { padding: 110px 0; color: #fff; background: linear-gradient(rgba(116,78,78,.88), rgba(116,78,78,.92)), url("assets/hero-mirai-stage.png") center 40% / cover; text-align: center; }
.final-cta h2 { font-size: clamp(30px, 5vw, 48px); }
.final-cta h2 em { color: #f1d4cd; font-style: normal; }
.final-cta p { margin-bottom: 14px; }
.final-cta .cta-row { margin-top: 38px; }
.final-cta small { display: block; margin-top: 16px; color: #eadbd1; font-size: 10px; }

footer { padding: 55px 20px 100px; background: #453835; text-align: center; }
.footer-logo { justify-content: center; color: #fff; }
footer p { margin: 15px 0; color: #cdbdb7; font-family: "Noto Serif JP", serif; font-size: 12px; letter-spacing: .15em; }
footer > small { color: #927e77; font-family: Georgia, serif; font-size: 9px; letter-spacing: .1em; }
.mobile-fixed-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-image { position: relative; top: auto; width: 100%; height: 52vw; min-height: 360px; background-position: 68% center; }
  .hero-image::after { background: linear-gradient(0deg, #f7f0e8 0%, transparent 50%); }
  .hero-inner { width: 100%; min-height: auto; }
  .hero-copy { width: 100%; padding: 0 32px 80px; text-align: center; }
  .hero-checks, .hero-description { margin-right: auto; margin-left: auto; }
  .hero-checks { justify-content: center; }
  .hero .cta-row { justify-content: center; }
  .cta-note { margin-left: 0; }
  .scroll-guide { display: none; }
  .worry-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 18px; }
  .future-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { padding-bottom: 64px; font-size: 14px; line-height: 1.9; }
  .container, .narrow { width: calc(100% - 32px); }
  .section { padding: 72px 0; }
  .site-header { height: 62px; padding: 0 16px; }
  .logo-mark { width: 32px; height: 32px; font-size: 16px; }
  .logo b { font-size: 14px; }
  .logo small { font-size: 6px; }
  .header-cta { display: none; }
  .mobile-only { display: block; }
  .pc-only { display: none; }
  h2 { margin-bottom: 18px; font-size: 25px; line-height: 1.65; }
  .section-label { margin-bottom: 8px; font-size: 9px; }
  .section-intro { margin-bottom: 36px; font-size: 12px; }
  .hero { padding-top: 62px; }
  .hero-image { height: 70vw; min-height: 300px; background-position: 66% center; }
  .hero-copy { margin-top: -20px; padding: 0 20px 65px; }
  .eyebrow { margin-bottom: 12px; font-size: 9px; }
  .hero h1 { margin-bottom: 18px; font-size: 31px; line-height: 1.65; }
  .hero-lead { font-size: 17px; }
  .hero-description { font-size: 12px; }
  .hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 10px; max-width: 340px; text-align: left; }
  .hero-checks li { font-size: 10px; }
  .hero .cta-row { display: none; }
  .cta-note { display: none; }
  .intro-message { padding: 30px 10px; }
  .intro-message::before, .intro-message::after { font-size: 60px; }
  .serif-strong { font-size: 19px; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .worry-grid p { min-height: 105px; padding: 20px 7px 10px; font-size: 11px; }
  .value-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 45px; }
  .value-card { min-height: auto; padding: 38px 24px 28px; }
  .value-card h3 { min-height: auto; }
  .mid-cta { padding: 52px 0; }
  .mid-cta p { font-size: 18px; }
  .btn { width: 100%; min-height: 56px; font-size: 13px; }
  .future-grid { gap: 7px; }
  .future-grid div { min-height: 140px; padding: 22px 7px; }
  .future-grid p { font-size: 11px; }
  .future-grid b { font-size: 14px; }
  .bonus-box { padding: 52px 20px 38px; }
  .bonus-highlight { font-size: 14px; }
  .bonus-highlight strong { display: block; font-size: 26px; }
  .story-grid { margin-top: 38px; }
  .story-card { display: block; padding: 28px 24px; text-align: center; }
  .avatar { width: 78px; height: 78px; margin: 0 auto 18px; }
  .story-card h3 { font-size: 17px; }
  .story-card p:last-child { text-align: left; }
  .reason-list { grid-template-columns: 1fr; gap: 8px; margin-top: 35px; }
  .reason-list li { padding: 17px 10px 17px 65px; font-size: 12px; }
  .reason-list span { width: 48px; }
  .support-grid { grid-template-columns: 1fr; margin-top: 35px; }
  .support-grid article { padding: 32px 25px; }
  .support-grid h3 { min-height: auto; font-size: 17px; }
  .message-box { padding: 38px 22px; }
  .message-box .experience { font-size: 17px; }
  .signature { text-align: center; }
  .faq-list { margin-top: 35px; }
  .faq summary { padding: 20px 45px 20px 15px; font-size: 12px; }
  .faq summary::after { right: 15px; }
  .faq details p { padding: 0 15px 20px; font-size: 11px; }
  .final-cta { padding: 75px 0; }
  .final-cta p { font-size: 12px; }
  footer { padding-bottom: 45px; }
  .mobile-fixed-cta { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr; height: 64px; padding: 7px; gap: 6px; background: rgba(255,255,255,.95); box-shadow: 0 -4px 18px rgba(91,62,55,.12); }
  .mobile-fixed-cta a { display: grid; place-items: center; color: #fff; background: var(--pink); border-radius: 30px; font-size: 12px; font-weight: 600; }
  .mobile-fixed-cta a:last-child { background: var(--green); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Simple contemporary theme */
:root {
  --ivory: #fbfaf8;
  --cream: #f4f2ee;
  --pink: #927d78;
  --pink-dark: #655552;
  --pink-light: #ddd7d2;
  --brown: #343230;
  --brown-light: #716d68;
  --gold: #9c9487;
  --green: #718276;
  --shadow: 0 14px 40px rgba(52, 50, 48, .06);
}

body {
  color: var(--brown);
  background: var(--ivory);
  letter-spacing: .025em;
}

.site-header {
  height: 70px;
  background: rgba(251, 250, 248, .92);
  border-bottom-color: rgba(52, 50, 48, .08);
}

.logo-mark {
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--brown);
  border-radius: 50%;
}

.header-cta, .btn-primary {
  background: var(--brown);
  border-color: var(--brown);
}

.header-cta:hover {
  color: var(--brown);
}

.hero {
  min-height: 760px;
  padding-top: 70px;
  background:
    radial-gradient(circle at 80% 35%, rgba(156, 148, 135, .15) 0 2px, transparent 3px),
    linear-gradient(135deg, #fbfaf8 0%, #f4f2ee 100%);
}

.hero::before {
  content: "MIRAI STAGE";
  position: absolute;
  right: -20px;
  bottom: 70px;
  color: rgba(52, 50, 48, .045);
  font-family: Georgia, serif;
  font-size: clamp(80px, 14vw, 210px);
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.hero-image { display: none; }

.hero-inner {
  justify-content: center;
  width: min(900px, calc(100% - 60px));
  min-height: 690px;
}

.hero-copy {
  width: 100%;
  padding: 80px 0;
  text-align: center;
}

.eyebrow {
  color: var(--brown-light);
  background: transparent;
  border: 0;
  border-radius: 0;
  letter-spacing: .2em;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: .06em;
}

.hero h1 em, .hero-lead { color: var(--brown); }
.hero-lead { font-weight: 500; }
.hero-description { margin-right: auto; margin-left: auto; }
.hero-checks { justify-content: center; }
.hero .cta-row { justify-content: center; }
.cta-note { margin-left: 0; }
.hero-checks li::before { color: var(--green); }

.section { padding: 110px 0; }
.section-label { color: var(--brown-light); }
.section-label::before, .section-label::after { width: 30px; }

h2 { letter-spacing: .04em; }

.intro-message::before, .intro-message::after { display: none; }
.serif-strong { color: var(--brown); }

.worry-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  max-width: 820px;
  margin: 0 auto;
}

.worry-grid p {
  display: block;
  min-height: auto;
  padding: 18px 10px 18px 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(52, 50, 48, .12);
  border-radius: 0;
  box-shadow: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  text-align: left;
}

.worry-grid p br { display: none; }
.worry-grid p::before { top: 18px; left: 8px; color: var(--green); }

.value-grid { gap: 1px; background: rgba(52, 50, 48, .1); }
.value-card {
  min-height: 280px;
  background: var(--ivory);
  border: 0;
  box-shadow: none;
}
.value-card .number {
  position: static;
  display: block;
  margin-bottom: 20px;
  color: var(--brown-light);
  font-size: 13px;
  font-style: normal;
  letter-spacing: .2em;
}
.line-icon { display: none; }
.value-card h3 { color: var(--brown); }

.mid-cta { background: #47433f; }
.btn {
  border-radius: 2px;
  box-shadow: none;
}
.btn:hover { box-shadow: none; }
.btn-outline { color: var(--brown); background: transparent; border-color: var(--brown); }
.btn-line { background: var(--green); }

.future-grid { gap: 1px; background: rgba(52, 50, 48, .1); }
.future-grid div {
  background: var(--cream);
  border: 0;
}
.future-grid span {
  top: 8px;
  right: 12px;
  color: rgba(52, 50, 48, .17);
  font-size: 13px;
  font-style: normal;
}
.future-grid b { color: var(--brown); }

.bonus { background: var(--ivory); }
.bonus-box {
  background: transparent;
  border: 1px solid rgba(52, 50, 48, .18);
  box-shadow: none;
}
.bonus-box::before { display: none; }
.bonus-tag { color: var(--ivory); background: var(--brown); }
.bonus-highlight {
  color: var(--brown);
  background: var(--cream);
  border-color: rgba(52, 50, 48, .16);
}
.bonus-highlight span { color: var(--brown-light); }

.story-card {
  grid-template-columns: 72px 1fr;
  padding: 35px;
  border-top: 1px solid rgba(52, 50, 48, .15);
  border-radius: 0;
  box-shadow: none;
}
.avatar {
  width: 65px;
  height: 65px;
  color: var(--brown);
  background: var(--cream);
  border: 0;
}
.avatar-two { background: var(--cream); }
.avatar span { font-size: 23px; }
.story-meta { color: var(--brown-light); }
.story-card h3 { color: var(--brown); }

.reason-list { gap: 1px; background: rgba(52, 50, 48, .1); }
.reason-list li {
  background: var(--ivory);
  border: 0;
  box-shadow: none;
}
.reason-list span { color: var(--brown-light); background: transparent; }

.dark-bg { background: #47433f; }
.support-grid { gap: 1px; background: rgba(255, 255, 255, .15); }
.support-grid article {
  background: #47433f;
  border: 0;
}
.support-grid h3 { color: #f2efea; }

.message { background: var(--ivory); }
.message-box {
  padding: 50px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq details { background: transparent; }
.faq summary span, .faq details p span, .faq summary::after { color: var(--brown-light); }

.final-cta {
  background: #47433f;
}

footer { background: #302e2c; }

@media (max-width: 900px) {
  .hero-image { display: none; }
  .hero-copy { padding: 70px 20px; }
}

@media (max-width: 600px) {
  .site-header { height: 62px; }
  .hero {
    min-height: 670px;
    padding-top: 62px;
  }
  .hero::before {
    right: -10px;
    bottom: 90px;
    font-size: 64px;
    writing-mode: vertical-rl;
  }
  .hero-inner { width: 100%; min-height: 600px; }
  .hero-copy { margin-top: 0; padding: 55px 20px 75px; }
  .hero h1 { font-size: 30px; }
  .hero-checks { grid-template-columns: 1fr; max-width: 220px; }
  .worry-grid { grid-template-columns: 1fr; gap: 0; }
  .value-grid, .future-grid, .reason-list, .support-grid { background: transparent; }
  .value-card { border-bottom: 1px solid rgba(52, 50, 48, .1); }
  .story-card { display: grid; grid-template-columns: 58px 1fr; gap: 15px; text-align: left; }
  .avatar { width: 55px; height: 55px; margin: 0; }
  .story-card p:last-child { grid-column: 1 / -1; }
}

/* Contemporary editorial magazine theme */
body {
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(52, 50, 48, .025) 50%, transparent calc(50% + .5px)),
    var(--ivory);
}

.site-header {
  padding: 0 3%;
  border-bottom: 1px solid var(--brown);
}

.logo b { letter-spacing: .2em; }
.header-cta {
  color: var(--brown);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brown);
  border-radius: 0;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 100vh;
  border-bottom: 1px solid var(--brown);
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(52, 50, 48, .08) 67% calc(67% + 1px), transparent calc(67% + 1px)),
    var(--ivory);
}

.hero::before {
  content: "MIRAI\A STAGE";
  right: 3%;
  bottom: 6%;
  color: var(--brown);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .75;
  opacity: .06;
  white-space: pre;
  text-align: right;
}

.hero::after {
  content: "ISSUE 01  /  LIFE AFTER 35";
  position: absolute;
  top: 95px;
  right: 3%;
  height: auto;
  color: var(--brown-light);
  background: transparent;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
}

.hero-inner {
  justify-content: flex-start;
  width: min(1200px, calc(100% - 80px));
}

.hero-copy {
  position: relative;
  width: 67%;
  padding: 110px 7% 90px 2%;
  text-align: left;
}

.hero-copy::before {
  content: "人生経験を、これからの価値に。";
  position: absolute;
  top: 50%;
  right: -140px;
  color: var(--brown-light);
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.eyebrow {
  padding: 0;
  border-bottom: 1px solid var(--brown);
  font-family: Georgia, "Noto Serif JP", serif;
  font-size: 10px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 730px;
  margin: 25px 0 35px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.32;
  letter-spacing: -.025em;
}

.hero h1 em {
  display: inline;
  color: var(--brown);
  font-style: italic;
}

.hero-lead {
  position: absolute;
  top: 135px;
  right: 10px;
  margin: 0;
  font-size: 16px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.hero-description {
  max-width: 550px;
  margin: 0 0 28px;
  padding-left: 22px;
  border-left: 1px solid var(--brown);
}

.hero-checks {
  justify-content: flex-start;
  max-width: 570px;
  margin-left: 0;
}

.hero .cta-row { justify-content: flex-start; }
.hero .btn-primary { color: #fff; }

.section {
  position: relative;
  border-bottom: 1px solid rgba(52, 50, 48, .12);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: .35em;
}
.section-label::before { content: "●"; width: auto; height: auto; margin: 0; background: transparent; font-size: 5px; }
.section-label::after { width: 50px; margin: 0; }

.intro .container { max-width: 1100px; }
.intro h2 { text-align: left; }
.intro .section-label { justify-content: flex-start; }
.intro-message {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 45px;
  padding: 30px 0 0 17%;
  text-align: left;
}
.intro-message p:first-child {
  grid-row: span 2;
  font-size: 17px;
  line-height: 2.4;
}
.intro-message .serif-strong {
  margin-top: -75px;
  padding: 40px 0 30px 35px;
  border-left: 1px solid var(--brown);
  font-size: 26px;
}

.worries h2, .future h2, .stories h2, .support h2 { font-size: clamp(34px, 5vw, 56px); }

.worry-grid {
  counter-reset: worry;
  max-width: 920px;
}
.worry-grid p {
  counter-increment: worry;
  padding-left: 55px;
}
.worry-grid p::before {
  content: "0" counter(worry);
  top: 18px;
  color: var(--brown-light);
  font-family: Georgia, serif;
  font-size: 10px;
}

.value-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 950px;
  margin: 65px auto 0;
}
.value-card {
  min-height: 300px;
  padding: 55px 50px;
  text-align: left;
}
.value-card:nth-child(even) { transform: translateY(45px); }
.value-card .number { font-size: 10px; }
.value-card h3 {
  min-height: auto;
  font-size: 22px;
}

.mid-cta { border-bottom: 0; }

.future-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
}
.future-grid div {
  min-height: 210px;
  border-right: 1px solid rgba(52, 50, 48, .16);
  border-bottom: 1px solid rgba(52, 50, 48, .16);
}
.future-grid div:nth-child(4n) { border-right: 0; }

.bonus-box {
  text-align: left;
}
.bonus-box h2, .bonus-box .section-label { justify-content: flex-start; text-align: left; }
.bonus-highlight { text-align: center; }

.story-grid {
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
}
.story-card {
  display: block;
  padding: 40px 0;
}
.story-card:nth-child(2) { margin-top: 120px; }
.avatar {
  float: left;
  margin: 0 25px 12px 0;
  border-radius: 0;
  font-style: italic;
}
.story-card h3 { font-size: 24px; }

.reason-list {
  max-width: 900px;
  background: transparent;
}
.reason-list li:nth-child(even) { transform: translateX(45px); }

.support-grid article:nth-child(2),
.support-grid article:nth-child(4) { transform: translateY(30px); }

.message-box {
  columns: 2;
  column-gap: 70px;
  text-align: left;
}
.message-box .experience, .message-box .serif-strong {
  column-span: all;
  padding: 30px 0;
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  text-align: center;
}
.signature { column-span: all; }

.final-cta h2 {
  font-size: clamp(45px, 8vw, 90px);
  line-height: 1.25;
  letter-spacing: -.04em;
}

@media (max-width: 900px) {
  .hero-copy { width: 80%; }
  .hero-lead { display: none; }
  .hero-copy::before { right: -80px; }
  .intro-message { padding-left: 5%; }
}

@media (max-width: 600px) {
  body { background: var(--ivory); }
  .hero { min-height: 720px; background: var(--ivory); }
  .hero::before {
    right: -3px;
    bottom: 75px;
    font-size: 70px;
    writing-mode: initial;
  }
  .hero::after {
    top: 85px;
    right: 14px;
  }
  .hero-inner { width: 100%; min-height: auto; }
  .hero-copy {
    width: 100%;
    padding: 70px 32px 95px 20px;
    text-align: left;
  }
  .hero-copy::before { display: none; }
  .hero h1 {
    margin: 20px 0 28px;
    font-size: 36px;
  }
  .hero-description { padding-left: 14px; font-size: 11px; }
  .hero-checks { margin-left: 0; }
  .section-label { justify-content: center; }
  .intro h2, .intro .section-label { justify-content: center; text-align: center; }
  .intro-message {
    display: block;
    padding: 15px 0 0;
    text-align: center;
  }
  .intro-message p:first-child { font-size: 14px; }
  .intro-message .serif-strong {
    margin: 25px 0;
    padding: 25px 0;
    border-top: 1px solid var(--brown);
    border-left: 0;
    border-bottom: 1px solid var(--brown);
  }
  .value-grid { grid-template-columns: 1fr; }
  .value-card:nth-child(even) { transform: none; }
  .future-grid { grid-template-columns: repeat(2, 1fr); }
  .future-grid div:nth-child(4n) { border-right: 1px solid rgba(52, 50, 48, .16); }
  .future-grid div:nth-child(even) { border-right: 0; }
  .bonus-box h2, .bonus-box .section-label { justify-content: center; text-align: center; }
  .story-grid { grid-template-columns: 1fr; gap: 10px; }
  .story-card:nth-child(2) { margin-top: 0; }
  .reason-list li:nth-child(even), .support-grid article:nth-child(2), .support-grid article:nth-child(4) { transform: none; }
  .message-box { columns: 1; text-align: center; }
  .final-cta h2 { font-size: 43px; }
}

/* Supplied illustrated cover */
.hero {
  display: block;
  min-height: auto;
  padding: 115px 20px 70px;
  border-bottom: 1px solid rgba(52, 50, 48, .12);
  background: #f8f5f1;
}

.hero::before,
.hero::after { display: none; }

.visual-cover {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(80, 64, 58, .13);
}

.visual-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-actions {
  width: min(760px, 100%);
  margin: 35px auto 0;
  text-align: center;
}

.visual-actions p {
  margin-bottom: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  letter-spacing: .08em;
}

.visual-actions p span {
  display: block;
  margin-bottom: 5px;
  color: #d57e7b;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .3em;
}

.visual-actions .btn-primary {
  color: #fff;
  background: #d57e7b;
  border-color: #d57e7b;
}

.visual-actions .btn-outline {
  color: #76645e;
  border-color: #cbbab2;
}

.visual-actions small {
  display: block;
  margin-top: 12px;
  color: var(--brown-light);
  font-size: 9px;
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 82px 0 48px;
  }
  .visual-cover {
    width: 100%;
    box-shadow: none;
  }
  .visual-actions {
    width: calc(100% - 32px);
    margin-top: 28px;
  }
  .visual-actions p { font-size: 14px; }
  .visual-actions .cta-row { display: none; }
}

/* Browser editing mode */
.editor-launch {
  position: fixed;
  z-index: 200;
  top: 82px;
  right: 18px;
  bottom: auto;
  padding: 14px 22px;
  color: #fff;
  background: #c96f6c;
  border: 2px solid #fff;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(52, 50, 48, .3);
  cursor: pointer;
  font: 600 13px/1 "Noto Sans JP", sans-serif;
  letter-spacing: .08em;
}
.editor-launch span { margin-right: 4px; font-size: 17px; }

.editor-bar {
  position: fixed;
  z-index: 90;
  top: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 20px;
  color: #fff;
  background: rgba(51, 47, 45, .96);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.editor-bar[hidden] { display: none; }
.editor-bar-copy { display: flex; align-items: center; gap: 14px; }
.editor-bar-copy b { font-size: 13px; white-space: nowrap; }
.editor-bar-copy span { color: #ded8d4; font-size: 10px; }
.editor-bar-actions { display: flex; gap: 7px; }
.editor-bar button {
  padding: 9px 14px;
  color: #3f3936;
  background: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font: 600 11px/1 "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.editor-bar #editorReset { color: #fff; background: transparent; border: 1px solid #817873; }
.editor-bar #editorClose { color: #fff; background: #c97774; }

.editor-toast {
  position: fixed;
  z-index: 100;
  bottom: 25px;
  left: 50%;
  padding: 10px 18px;
  color: #fff;
  background: rgba(51, 47, 45, .94);
  border-radius: 30px;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: .25s;
}
.editor-toast.show { opacity: 1; transform: translate(-50%, 0); }

.editor-active { padding-top: 75px; }
.editor-active .site-header { top: 75px; }
.editor-active .editor-launch,
.editor-active .mobile-fixed-cta { display: none; }
.editor-active [contenteditable="true"] {
  cursor: text;
  outline: 1px dashed rgba(201, 119, 116, .65);
  outline-offset: 4px;
  transition: background .2s, outline .2s;
}
.editor-active [contenteditable="true"]:hover,
.editor-active [contenteditable="true"]:focus {
  background: rgba(255, 240, 235, .8);
  outline: 2px solid #d57e7b;
}
.editor-active a[data-link-id] { cursor: pointer; }
.editor-active a[data-link-id]::after {
  content: "リンク編集";
  display: inline-block;
  margin-left: 7px;
  padding: 3px 6px;
  color: #fff;
  background: #3f3936;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .04em;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .editor-launch {
    right: 12px;
    top: 72px;
    bottom: auto;
    padding: 12px 16px;
    font-size: 11px;
  }
  .editor-bar {
    top: 6px;
    right: 6px;
    left: 6px;
    display: block;
    padding: 10px;
  }
  .editor-bar-copy span { display: none; }
  .editor-bar-actions { margin-top: 8px; }
  .editor-bar-actions button { flex: 1; padding: 9px 5px; }
  .editor-active { padding-top: 92px; }
  .editor-active .site-header { top: 92px; }
}

/* Netlify consultation form */
.contact-form {
  width: min(900px, 100%);
  margin: 50px auto 0;
  padding: 55px 60px;
  color: var(--brown);
  background: rgba(255, 255, 255, .96);
  text-align: left;
}

.form-hidden { display: none; }
.form-heading { margin-bottom: 38px; text-align: center; }
.form-heading > span {
  color: #d57e7b;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .3em;
}
.form-heading h3 { margin: 5px 0 12px; font-size: 26px; }
.form-heading p { margin: 0; color: var(--brown-light); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
.form-field { display: block; }
.form-field > span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}
.form-field b {
  margin-left: 5px;
  padding: 2px 5px;
  color: #fff;
  background: #d57e7b;
  font-size: 8px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  padding: 14px;
  color: var(--brown);
  background: #fbfaf8;
  border: 1px solid #d8d0ca;
  border-radius: 0;
  font: 14px/1.6 "Noto Sans JP", sans-serif;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #d57e7b;
  outline: 2px solid rgba(213, 126, 123, .15);
}
.form-wide { grid-column: 1 / -1; }
.form-consent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin: 28px 0 22px;
  color: var(--brown-light);
  font-size: 11px;
  cursor: pointer;
}
.form-consent input { margin-top: 6px; accent-color: #d57e7b; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(400px, 100%);
  margin: 0 auto;
  padding: 18px 25px;
  color: #fff;
  background: #d57e7b;
  border: 0;
  cursor: pointer;
  font: 600 14px/1.4 "Noto Sans JP", sans-serif;
  letter-spacing: .08em;
  transition: .25s;
}
.form-submit:hover { background: #be6a67; transform: translateY(-2px); }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-status {
  min-height: 1.8em;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 11px;
  text-align: center;
}
.form-status.error { color: #b34f4c; }
.contact-form > small { display: block; margin-top: 14px; color: var(--brown-light); text-align: center; }

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 25px;
  background: #f8f5f1;
}
.thanks-card {
  width: min(650px, 100%);
  padding: 70px 35px;
  background: #fff;
  border: 1px solid #e3dcd7;
  text-align: center;
}
.thanks-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  color: #fff;
  background: #d57e7b;
  border-radius: 50%;
  font-size: 22px;
}
.thanks-card h1 { margin: 10px 0 25px; font-size: clamp(24px, 5vw, 34px); }
.thanks-card p { color: var(--brown-light); }
.thanks-card .btn { width: min(280px, 100%); margin: 30px auto 0; }

@media (max-width: 600px) {
  .contact-form { margin-top: 35px; padding: 35px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-wide { grid-column: auto; }
  .form-heading h3 { font-size: 22px; }
  .form-heading p { font-size: 10px; }
}

/* Live streamer type diagnosis */
.diagnosis {
  background: linear-gradient(145deg, #f6ece9, #fbfaf8 48%, #f0eee8);
  text-align: center;
}
.diagnosis .container { width: min(900px, calc(100% - 40px)); }
.diagnosis-intro,
.diagnosis-app,
.diagnosis-result {
  padding: 65px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(213, 126, 123, .23);
  box-shadow: 0 20px 55px rgba(80, 64, 58, .09);
}
.diagnosis-intro h2 { margin-bottom: 18px; }
.diagnosis-intro > p:not(.section-label) { color: var(--brown-light); }
.diagnosis-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(420px, 100%);
  margin: 30px auto 12px;
  padding: 20px 25px;
  color: #fff;
  background: #d57e7b;
  border: 0;
  cursor: pointer;
  font: 600 14px/1.4 "Noto Sans JP", sans-serif;
  letter-spacing: .08em;
  transition: .25s;
}
.diagnosis-start:hover { background: #be6a67; transform: translateY(-2px); }
.diagnosis-intro small { color: var(--brown-light); font-size: 9px; }
.diagnosis-progress {
  height: 3px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #ebe5e0;
}
.diagnosis-progress span { display: block; width: 0; height: 100%; background: #d57e7b; transition: width .35s; }
.diagnosis-count { margin-bottom: 28px; color: #d57e7b; font-family: Georgia, serif; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; }
.diagnosis-question span { display: block; margin-bottom: 8px; color: #d57e7b; font-family: Georgia, serif; font-size: 13px; }
.diagnosis-question h3 { margin-bottom: 35px; font-size: clamp(20px, 4vw, 27px); }
.diagnosis-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diagnosis-options button {
  min-height: 64px;
  padding: 14px 18px;
  color: var(--brown);
  background: #fbfaf8;
  border: 1px solid #ddd3cc;
  cursor: pointer;
  font: 500 13px/1.6 "Noto Sans JP", sans-serif;
  transition: .2s;
}
.diagnosis-options button:hover { color: #fff; background: #d57e7b; border-color: #d57e7b; transform: translateY(-2px); }
.diagnosis-back,
.diagnosis-retry {
  margin-top: 25px;
  padding: 5px;
  color: var(--brown-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 11px;
}
.result-label { margin-bottom: 18px; color: #d57e7b; font-family: Georgia, serif; font-size: 9px; letter-spacing: .25em; }
.result-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  color: #fff;
  background: #d57e7b;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 30px;
}
.diagnosis-result > p { margin-bottom: 8px; color: var(--brown-light); font-size: 12px; }
.diagnosis-result h3 { margin-bottom: 18px; font-size: clamp(25px, 5vw, 38px); }
.diagnosis-result .result-lead { max-width: 600px; margin: 0 auto 38px; color: var(--brown); font-family: "Noto Serif JP", serif; font-size: 16px; }
.result-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 35px; background: #e2dad4; text-align: left; }
.result-details div { padding: 24px; background: #fbfaf8; }
.result-details span { display: block; margin-bottom: 10px; color: #d57e7b; font-size: 10px; font-weight: 600; letter-spacing: .1em; }
.result-details p { margin: 0; color: var(--brown-light); font-size: 11px; line-height: 1.9; }
.diagnosis-result .result-message { margin-bottom: 25px; }
.diagnosis-result .cta-row { margin-bottom: 10px; }

@media (max-width: 600px) {
  .diagnosis .container { width: calc(100% - 24px); }
  .diagnosis-intro,
  .diagnosis-app,
  .diagnosis-result { padding: 38px 18px; }
  .diagnosis-options { grid-template-columns: 1fr; gap: 8px; }
  .diagnosis-options button { min-height: 56px; font-size: 12px; }
  .result-details { grid-template-columns: 1fr; }
  .diagnosis-result .cta-row { display: grid; }
}
