﻿/*
Referenced SSOT:
- D:/Project/ContextBuilder/Build/CLAUDE.md section 2 and section 7
- D:/Project/ContextBuilder/Build/Context/Design/패턴/역할기반UI.md
- D:/Project/dearme/Docs/md/DearMe_서비스소개서_v1.0.0.md
- D:/Project/dearme/Docs/md/DearMe_BM전략_v1.0.0.md
*/

:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --surface: #fffaf1;
  --surface-strong: #ffffff;
  --ink: #1f2722;
  --muted: #65716a;
  --line: #d9d2c4;
  --brand: #24483a;
  --brand-2: #4c7a63;
  --accent: #d8674b;
  --soft: #dfe9df;
  --warning: #f0c36d;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(31, 39, 34, 0.14);
  font-family: Pretendard, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.theme-02 {
  --bg: #f7f6ee;
  --brand: #315a47;
  --brand-2: #6c927a;
  --accent: #d88a45;
  --soft: #e6eee1;
}

body.theme-03 {
  --bg: #f3f5f0;
  --brand: #1f5144;
  --brand-2: #467f70;
  --accent: #4e86a5;
  --soft: #dce9e3;
}

body.theme-04 {
  --bg: #f8f5ee;
  --brand: #24483a;
  --brand-2: #5b8a6d;
  --accent: #dc6748;
  --soft: #e6eee1;
}

body.theme-05 {
  --bg: #f6f3ec;
  --brand: #2c4d3f;
  --brand-2: #607c6c;
  --accent: #59758f;
  --soft: #e3e8df;
}

body.theme-06 {
  --bg: #fff8ee;
  --brand: #24483a;
  --brand-2: #587f68;
  --accent: #da604c;
  --soft: #e4f0e7;
}

body.theme-07 {
  --bg: #eee7da;
  --surface: #fff8ec;
  --brand: #1f3f34;
  --brand-2: #4b765f;
  --accent: #c68642;
  --soft: #efe3cf;
}

body.theme-08 {
  --bg: #fbf2e7;
  --brand: #2d5142;
  --brand-2: #588a75;
  --accent: #d77954;
  --soft: #e5f0ee;
}

body.theme-09 {
  --bg: #f2f2ee;
  --brand: #203f36;
  --brand-2: #365f56;
  --accent: #d96d52;
  --soft: #dce5ea;
}

body.theme-10 {
  --bg: #f2f4f0;
  --brand: #213e34;
  --brand-2: #556a61;
  --accent: #d9634c;
  --soft: #e0e7e0;
}

body.theme-11 {
  --bg: #f7f5ee;
  --brand: #25483b;
  --brand-2: #5a7967;
  --accent: #bb7356;
  --soft: #ece8dc;
}

body.theme-12 {
  --bg: #f5f1e8;
  --brand: #1f4337;
  --brand-2: #4e7a63;
  --accent: #d4614b;
  --soft: #dce9df;
}

body.theme-14 {
  --bg: #f4efe6;
  --surface: #fff8ed;
  --surface-strong: #ffffff;
  --brand: #183f35;
  --brand-2: #527863;
  --accent: #d45f49;
  --soft: #e8e1d0;
}

body.theme-15 {
  --bg: #f5f0e8;
  --surface: #fff8ee;
  --surface-strong: #ffffff;
  --ink: #1d2621;
  --muted: #657069;
  --line: #ddd3c4;
  --brand: #173d34;
  --brand-2: #567f67;
  --accent: #d7664d;
  --soft: #e7dfcf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

body.exact-body {
  background: var(--bg);
  line-height: 0;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.shell {
  min-height: 100vh;
}

.exact-page {
  margin: 0;
  min-height: 100vh;
  padding: 0;
}

.exact-image {
  display: block;
  height: auto;
  margin: 0;
  width: 100%;
}

.design-switcher {
  align-items: center;
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(36, 72, 58, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(20, 27, 23, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: min(640px, calc(100vw - 28px));
  padding: 8px;
  position: fixed;
  right: 14px;
  top: 14px;
  z-index: 40;
}

.design-switcher a {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  min-width: 30px;
  padding: 0 9px;
}

.design-switcher a.active,
.design-switcher a:hover {
  background: var(--brand);
  color: #fffaf1;
}

.continuation {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 86%, #fff 14%) 0%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.55;
}

.continuation-inner {
  margin: 0 auto;
  max-width: 1220px;
  padding: 72px 22px 84px;
}

.variant-head {
  margin-bottom: 26px;
  max-width: 880px;
}

.variant-head .eyebrow {
  color: var(--accent);
}

.variant-head h2 {
  color: var(--brand);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

.variant-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 16px 0 0;
}

.night-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.journal-panel,
.download-card,
.language-panel,
.story-main,
.vault-main {
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  padding: clamp(26px, 5vw, 54px);
}

.journal-panel span,
.education-reframe span {
  color: rgba(255, 250, 241, 0.72);
  display: block;
  font-weight: 800;
  margin-bottom: 12px;
}

.journal-panel blockquote {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
}

.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.journal-actions a,
.download-card a,
.continue-band a {
  background: #fffaf1;
  border-radius: var(--radius);
  color: var(--brand);
  font-weight: 900;
  padding: 12px 16px;
}

.ritual-list,
.acceptance-steps,
.vault-controls,
.install-steps,
.toggle-board,
.story-side {
  display: grid;
  gap: 14px;
}

.ritual-list article,
.acceptance-steps article,
.vault-controls article,
.install-steps article,
.toggle-board article,
.story-side article,
.continue-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.ritual-list strong,
.acceptance-steps strong,
.vault-controls strong,
.install-steps strong,
.toggle-board strong,
.story-side strong,
.continue-card strong {
  color: var(--brand);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.ritual-list span,
.acceptance-steps span,
.vault-controls span,
.install-steps span,
.toggle-board span,
.story-side span,
.continue-card span {
  color: var(--muted);
  display: block;
}

.soft-band,
.report-strip,
.download-note,
.launch-map,
.premium-trust {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 22px;
}

.soft-band strong,
.report-strip b,
.download-note strong,
.launch-map b,
.premium-trust strong {
  color: var(--brand);
  font-size: 20px;
}

.soft-band span,
.report-strip span,
.download-note span,
.launch-map span,
.premium-trust span {
  color: var(--muted);
}

.acceptance-steps {
  counter-reset: step;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.acceptance-steps article {
  min-height: 190px;
  position: relative;
}

.acceptance-steps article::before {
  color: color-mix(in srgb, var(--brand) 12%, transparent);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 12px;
}

.safety-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.safety-row div {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 20px;
}

.safety-row strong {
  color: var(--brand);
  display: block;
  margin-bottom: 7px;
}

.safety-row span {
  color: var(--muted);
}

.report-board {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.chart-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 180px;
  padding: 20px;
}

.chart-card.large {
  grid-row: span 2;
}

.chart-card strong {
  color: var(--brand);
  display: block;
  font-size: 20px;
  margin-bottom: 16px;
}

.chart-card span {
  color: var(--muted);
}

.fake-chart {
  align-items: end;
  background: var(--soft);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  height: 280px;
  padding: 18px;
}

.fake-chart i {
  background: var(--accent);
  border-radius: 999px 999px 0 0;
  flex: 1;
}

.pricing-focus,
.premium-plans {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-focus article,
.premium-plans article {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}

.pricing-focus article.recommended,
.premium-plans article.recommended {
  border-color: var(--accent);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent) 22%, transparent);
}

.pricing-focus em,
.premium-plans em {
  background: var(--accent);
  border-radius: 999px;
  color: #fffaf1;
  font-style: normal;
  font-weight: 900;
  padding: 5px 8px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.pricing-focus h3,
.premium-plans strong {
  color: var(--brand);
  display: block;
  font-size: 22px;
  margin: 0 0 8px;
}

.pricing-focus p,
.premium-plans b {
  color: var(--brand);
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px;
}

.pricing-focus ul,
.premium-plans span {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-focus li + li {
  margin-top: 8px;
}

.usage-table,
.admin-console,
.roadmap-board,
.module-preview,
.premium-story {
  margin-top: 20px;
}

.usage-table {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
}

.usage-table h3 {
  color: var(--brand);
  margin: 0 0 12px;
}

.usage-table table,
.admin-console table {
  border-collapse: collapse;
  width: 100%;
}

.usage-table th,
.usage-table td,
.admin-console th,
.admin-console td {
  border-top: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.usage-table th,
.admin-console th {
  color: var(--brand);
  white-space: nowrap;
}

.privacy-vault,
.download-flow,
.global-layout,
.premium-story,
.dual-mode,
.education-reframe,
.admin-console {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.vault-main h3,
.download-card h3,
.language-panel h3,
.story-main h3,
.admin-console aside strong {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.vault-main p,
.download-card p,
.language-panel p,
.story-main p,
.admin-console aside span {
  color: rgba(255, 250, 241, 0.76);
  display: block;
  font-size: 18px;
  margin: 0;
}

.download-card a {
  display: inline-flex;
  margin-top: 24px;
}

.download-note {
  margin-top: 18px;
}

.mode-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.mode-card h3 {
  color: var(--brand);
  font-size: 28px;
  margin: 0 0 10px;
}

.mode-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.message-stack {
  display: grid;
  gap: 9px;
}

.message-stack span,
.message-stack b {
  border-radius: var(--radius);
  display: block;
  padding: 12px;
}

.message-stack span {
  background: var(--brand);
  color: #fffaf1;
  justify-self: end;
  max-width: 72%;
}

.message-stack b {
  background: var(--soft);
  color: var(--brand);
  font-weight: 700;
  max-width: 78%;
}

.diary-lines {
  background: var(--soft);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.diary-lines i {
  background: #fffaf1;
  border-radius: 999px;
  height: 12px;
}

.diary-lines i:nth-child(2) {
  width: 78%;
}

.diary-lines i:nth-child(3) {
  width: 92%;
}

.diary-lines i:nth-child(4) {
  width: 64%;
}

.education-reframe {
  align-items: stretch;
}

.education-reframe .before,
.education-reframe .after {
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
}

.education-reframe .before {
  background: #2c302c;
  color: #fffaf1;
}

.education-reframe .after {
  background: var(--brand);
  color: #fffaf1;
}

.education-reframe strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.16;
}

.toggle-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.language-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.language-grid span {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  display: flex;
  font-size: 20px;
  font-weight: 900;
  min-height: 116px;
  padding: 20px;
}

.launch-map {
  margin-top: 18px;
}

.admin-console aside {
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  padding: 28px;
}

.admin-console table {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.roadmap-board {
  display: grid;
  gap: 12px;
}

.roadmap-board article {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 20px;
  grid-template-columns: 160px 1fr;
  padding: 18px;
}

.roadmap-board strong {
  color: var(--accent);
  font-size: 20px;
}

.roadmap-board span {
  color: var(--muted);
}

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

.module-preview div {
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  padding: 18px;
}

.module-preview strong,
.module-preview span {
  display: block;
}

.module-preview span {
  color: rgba(255, 250, 241, 0.72);
  margin-top: 8px;
}

.premium-story {
  align-items: stretch;
}

.blend-hero {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.blend-copy {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 92%, #111 8%), var(--brand));
  border-radius: var(--radius);
  color: #fffaf1;
  min-height: 420px;
  padding: clamp(30px, 5vw, 58px);
}

.blend-copy span {
  color: rgba(255, 250, 241, 0.68);
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.blend-copy h3 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  max-width: 760px;
}

.blend-copy p {
  color: rgba(255, 250, 241, 0.76);
  font-size: 18px;
  margin: 22px 0 0;
  max-width: 680px;
}

.blend-chat {
  align-content: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
}

.blend-message {
  border-radius: var(--radius);
  line-height: 1.5;
  padding: 14px 16px;
}

.blend-message.user {
  background: var(--brand);
  color: #fffaf1;
  justify-self: end;
  max-width: 76%;
}

.blend-message.ai {
  background: var(--soft);
  color: var(--brand);
  max-width: 88%;
}

.blend-diary {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 10px;
  padding: 18px;
}

.blend-diary strong,
.blend-diary span {
  display: block;
}

.blend-diary strong {
  color: var(--brand);
  margin-bottom: 8px;
}

.blend-diary span {
  color: var(--muted);
}

.blend-flow {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.blend-flow article {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 210px;
  padding: 18px;
}

.blend-flow b {
  color: var(--accent);
  display: block;
  font-size: 28px;
  margin-bottom: 18px;
}

.blend-flow strong {
  color: var(--brand);
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
}

.blend-flow span {
  color: var(--muted);
  display: block;
}

.blend-report {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  margin-top: 22px;
}

.report-preview {
  background: #101612;
  border-radius: var(--radius);
  color: #fffaf1;
  padding: 22px;
}

.report-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.report-top strong {
  font-size: 24px;
}

.report-top span {
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
}

.report-chart {
  align-items: end;
  background: rgba(255, 250, 241, 0.08);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  height: 270px;
  padding: 18px;
}

.report-chart i {
  background: var(--accent);
  border-radius: 999px 999px 0 0;
  flex: 1;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.report-tags span {
  background: rgba(255, 250, 241, 0.1);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
}

.report-copy {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
}

.report-copy h3 {
  color: var(--brand);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

.report-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 0;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.report-actions a {
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  font-weight: 900;
  padding: 12px 14px;
}

.report-actions a + a {
  background: var(--soft);
  color: var(--brand);
}

.blend-retention {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.blend-retention div,
.blend-final-note {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.blend-retention strong,
.blend-final-note strong {
  color: var(--brand);
  display: block;
  font-size: 19px;
  margin-bottom: 8px;
}

.blend-retention span,
.blend-final-note span {
  color: var(--muted);
  display: block;
}

.blend-final-note {
  margin-top: 18px;
}

.hybrid-intro {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.hybrid-copy {
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 95, 73, 0.24), transparent 28%),
    linear-gradient(150deg, #101612, var(--brand));
  border-radius: var(--radius);
  color: #fffaf1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: clamp(28px, 4.8vw, 56px);
}

.hybrid-copy span,
.hybrid-report-copy span,
.hybrid-diary span,
.hybrid-signal span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hybrid-copy span {
  color: rgba(255, 250, 241, 0.66);
}

.hybrid-copy h3 {
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 20px 0 0;
}

.hybrid-copy p {
  color: rgba(255, 250, 241, 0.74);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 720px;
}

.hybrid-snapshot {
  background: #101612;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.hybrid-snapshot img {
  border-radius: 6px;
  display: block;
  height: auto;
  width: 100%;
}

.hybrid-snapshot figcaption {
  color: rgba(255, 250, 241, 0.7);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  padding: 12px 4px 2px;
}

.hybrid-insert-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.hybrid-insert-strip figure {
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

.hybrid-insert-strip img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.hybrid-insert-strip figcaption {
  color: rgba(255, 250, 241, 0.76);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  padding: 9px 10px 10px;
}

.hybrid-app-flow {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.05fr) minmax(260px, 0.75fr);
  margin-top: 22px;
}

.hybrid-phone,
.hybrid-diary,
.hybrid-signal,
.hybrid-report-card,
.hybrid-report-copy,
.hybrid-bottom div {
  border-radius: var(--radius);
}

.hybrid-phone {
  background: #101612;
  color: #fffaf1;
  display: grid;
  gap: 14px;
  min-height: 430px;
  padding: 22px;
}

.hybrid-phone-top,
.hybrid-report-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.hybrid-phone-top span,
.hybrid-report-head span {
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
}

.hybrid-bubble {
  border-radius: var(--radius);
  line-height: 1.55;
  padding: 14px 16px;
}

.hybrid-bubble.user {
  background: #fffaf1;
  color: var(--brand);
  justify-self: end;
  max-width: 78%;
}

.hybrid-bubble.ai {
  background: rgba(255, 250, 241, 0.12);
  color: rgba(255, 250, 241, 0.86);
  max-width: 90%;
}

.hybrid-input {
  align-self: end;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.7);
  font-weight: 800;
  padding: 13px 16px;
}

.hybrid-diary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
}

.hybrid-diary span,
.hybrid-signal span,
.hybrid-report-copy span {
  color: var(--accent);
}

.hybrid-diary h3 {
  color: var(--brand);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 16px 0 0;
}

.hybrid-diary p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px 0 0;
}

.hybrid-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.hybrid-lines i {
  background: var(--soft);
  border-radius: 999px;
  display: block;
  height: 12px;
}

.hybrid-lines i:nth-child(1) { width: 92%; }
.hybrid-lines i:nth-child(2) { width: 76%; }
.hybrid-lines i:nth-child(3) { width: 88%; }
.hybrid-lines i:nth-child(4) { width: 58%; }

.hybrid-signal {
  background: var(--soft);
  border: 1px solid color-mix(in srgb, var(--brand) 14%, var(--line));
  padding: 24px;
}

.hybrid-signal strong {
  color: var(--brand);
  display: block;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 18px;
}

.hybrid-signal p {
  color: var(--muted);
  margin: 18px 0 0;
}

.hybrid-report {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 22px;
}

.hybrid-report-copy {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: clamp(24px, 4.2vw, 46px);
}

.hybrid-report-copy h3 {
  color: var(--brand);
  font-size: clamp(30px, 4.5vw, 54px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 16px 0 0;
}

.hybrid-report-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 20px 0 0;
}

.hybrid-report-card {
  background: #101612;
  color: #fffaf1;
  padding: 22px;
}

.hybrid-report-head strong {
  font-size: 24px;
}

.hybrid-chart {
  align-items: end;
  background: rgba(255, 250, 241, 0.08);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  height: 300px;
  margin-top: 18px;
  padding: 18px;
}

.hybrid-chart i {
  background: linear-gradient(180deg, var(--accent), #f0c36d);
  border-radius: 999px 999px 0 0;
  flex: 1;
}

.hybrid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hybrid-tags span {
  background: rgba(255, 250, 241, 0.1);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
}

.hybrid-bottom {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.hybrid-bottom div {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: 20px;
}

.hybrid-bottom strong,
.hybrid-bottom span {
  display: block;
}

.hybrid-bottom strong {
  color: var(--brand);
  font-size: 19px;
  margin-bottom: 8px;
}

.hybrid-bottom span {
  color: var(--muted);
}

.story15-html-hero {
  background:
    linear-gradient(90deg, rgba(12, 17, 16, 0.92) 0%, rgba(12, 17, 16, 0.66) 54%, rgba(12, 17, 16, 0.22) 100%),
    url("../homepage-concepts/band-01-night.png") center / cover;
  border-radius: var(--radius);
  color: #fffaf1;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  min-height: 680px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
}

.story15-hero-copy {
  align-self: center;
  max-width: 760px;
}

.story15-hero-copy span {
  color: rgba(255, 250, 241, 0.64);
}

.story15-hero-copy h2 {
  font-size: 66px;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 18px 0 0;
}

.story15-hero-copy p {
  color: rgba(255, 250, 241, 0.76);
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 650px;
}

.story15-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.story15-hero-actions a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.story15-hero-actions a:first-child {
  background: #fffaf1;
  color: #142119;
}

.story15-hero-actions a:last-child {
  border: 1px solid rgba(255, 250, 241, 0.34);
  color: #fffaf1;
}

.story15-hero-dialogue {
  align-self: end;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  padding: 22px;
}

.story15-hero-dialogue p,
.story15-hero-dialogue strong {
  display: block;
  line-height: 1.55;
  margin: 0;
}

.story15-hero-dialogue p {
  color: #fffaf1;
  font-size: 18px;
}

.story15-hero-dialogue strong {
  color: rgba(255, 250, 241, 0.72);
  margin-top: 18px;
}

.story15-opening {
  background:
    linear-gradient(135deg, #101612 0%, var(--brand) 58%, color-mix(in srgb, var(--brand-2) 78%, #101612) 100%);
  border-radius: var(--radius);
  color: #fffaf1;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  min-height: 430px;
  padding: clamp(30px, 5vw, 62px);
}

.story15-opening-copy {
  align-self: center;
  max-width: 840px;
}

.story15-hero-copy span,
.story15-opening-copy span,
.story15-product-copy span,
.story15-report-copy span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story15-opening-copy span {
  color: rgba(255, 250, 241, 0.64);
}

.story15-opening-copy h2 {
  font-size: clamp(38px, 5.6vw, 72px);
  letter-spacing: 0;
  line-height: 1.03;
  margin: 18px 0 0;
}

.story15-opening-copy p {
  color: rgba(255, 250, 241, 0.74);
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 720px;
}

.story15-opening-note {
  align-self: end;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  padding: 22px;
}

.story15-opening-note p,
.story15-opening-note strong {
  display: block;
  line-height: 1.55;
  margin: 0;
}

.story15-opening-note p {
  color: #fffaf1;
  font-size: 18px;
}

.story15-opening-note strong {
  color: rgba(255, 250, 241, 0.72);
  margin-top: 18px;
}

.story15-product-stage {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  margin-top: 24px;
}

.story15-live-app {
  background: #101612;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fffaf1;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(250px, 0.86fr) minmax(250px, 1fr);
  min-height: 520px;
  padding: 18px;
}

.story15-live-phone,
.story15-live-journal {
  border-radius: var(--radius);
}

.story15-live-phone {
  background: #fffaf1;
  color: #152019;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
  padding: 18px;
}

.story15-phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.story15-phone-top span,
.story15-phone-top strong {
  display: block;
}

.story15-phone-top span {
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.story15-phone-top strong {
  color: var(--muted);
  font-size: 12px;
}

.story15-chat {
  border-radius: 18px;
  line-height: 1.5;
  max-width: 88%;
  padding: 12px 14px;
}

.story15-chat.user {
  align-self: flex-end;
  background: #dbe8d7;
  color: #172018;
}

.story15-chat.ai {
  align-self: flex-start;
  background: #eee6d8;
  color: #283329;
}

.story15-input {
  background: #f2eadc;
  border-radius: 999px;
  color: var(--muted);
  margin-top: auto;
  padding: 13px 16px;
}

.story15-live-journal {
  align-self: stretch;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
}

.story15-live-journal span {
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.story15-live-journal h4 {
  color: #fffaf1;
  font-size: 32px;
  line-height: 1.12;
  margin: 14px 0 0;
}

.story15-live-journal p {
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.65;
  margin: 16px 0 0;
}

.story15-emotion-line {
  background: rgba(255, 250, 241, 0.08);
  border-radius: 999px;
  margin-top: 24px;
  overflow: hidden;
  position: relative;
}

.story15-emotion-line i {
  background: linear-gradient(90deg, #e8c46b, var(--accent));
  display: block;
  height: 42px;
}

.story15-emotion-line strong {
  color: #fffaf1;
  font-size: 13px;
  left: 16px;
  position: absolute;
  top: 12px;
}

.story15-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.story15-keywords b {
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 12px;
  padding: 7px 10px;
}

.story15-product-image {
  background: #101612;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.story15-product-image img {
  border-radius: 6px;
  display: block;
  height: auto;
  width: 100%;
}

.story15-product-copy {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 520px;
  padding: clamp(28px, 4.8vw, 54px);
}

.story15-product-copy span,
.story15-report-copy span {
  color: var(--accent);
}

.story15-product-copy h3,
.story15-report-copy h3 {
  color: var(--brand);
  font-size: clamp(32px, 4.8vw, 58px);
  letter-spacing: 0;
  line-height: 1.07;
  margin: 16px 0 0;
}

.story15-product-copy p,
.story15-report-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 20px 0 0;
}

.story15-rules {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.story15-rules div {
  align-items: center;
  background: var(--soft);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  grid-template-columns: 52px minmax(120px, 0.42fr) 1fr;
  padding: 16px;
}

.story15-rules b {
  color: var(--accent);
  font-size: 22px;
}

.story15-rules strong {
  color: var(--brand);
  font-size: 18px;
}

.story15-rules em {
  color: var(--muted);
  font-style: normal;
}

.story15-screens {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.story15-screens figure {
  background: #101612;
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
  padding: 12px 12px 0;
}

.story15-screens img {
  background: #fffaf1;
  border-radius: 6px 6px 0 0;
  display: block;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.story15-screens figcaption {
  color: rgba(255, 250, 241, 0.76);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  padding: 12px 2px 14px;
}

.story15-screens-live article {
  background: #101612;
  border-radius: var(--radius);
  color: #fffaf1;
  min-height: 240px;
  padding: 24px;
}

.story15-screens-live b,
.story15-screens-live strong,
.story15-screens-live span {
  display: block;
}

.story15-screens-live b {
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 54px;
  text-transform: uppercase;
}

.story15-screens-live strong {
  font-size: 24px;
  line-height: 1.2;
}

.story15-screens-live span {
  color: rgba(255, 250, 241, 0.68);
  line-height: 1.58;
  margin-top: 12px;
}

.story15-report-flow {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 24px;
}

.story15-report-copy,
.story15-report-paper {
  border-radius: var(--radius);
}

.story15-report-copy {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: clamp(28px, 4.8vw, 54px);
}

.story15-report-paper {
  background: #101612;
  color: #fffaf1;
  padding: 24px;
}

.story15-report-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.story15-report-head strong {
  font-size: 24px;
}

.story15-report-head span {
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
}

.story15-report-bars {
  align-items: end;
  background: rgba(255, 250, 241, 0.08);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  height: 300px;
  margin-top: 20px;
  padding: 18px;
}

.story15-report-bars i {
  background: linear-gradient(180deg, #f0c36d, var(--accent));
  border-radius: 999px 999px 0 0;
  flex: 1;
}

.story15-report-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.story15-report-summary p {
  background: rgba(255, 250, 241, 0.08);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
}

.story15-report-summary b,
.story15-report-summary span {
  display: block;
}

.story15-report-summary b {
  color: #fffaf1;
}

.story15-report-summary span {
  color: rgba(255, 250, 241, 0.72);
}

.story15-close {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.story15-close div {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.story15-close strong,
.story15-close span {
  display: block;
}

.story15-close strong {
  color: var(--brand);
  font-size: 19px;
  margin-bottom: 8px;
}

.story15-close span {
  color: var(--muted);
}

.why-stack,
.principle-panel,
.bm-defense,
.privacy-policy-grid,
.journey-lane,
.input-routes,
.module-grid,
.global-proof,
.ops-audit,
.roadmap-note,
.difference-matrix,
.report-export {
  margin-top: 20px;
}

.why-stack,
.principle-panel,
.bm-defense,
.roadmap-note {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.why-stack {
  display: grid;
  gap: 22px;
  grid-template-columns: 260px 1fr;
}

.why-stack h3,
.principle-panel h3,
.bm-defense h3 {
  color: var(--brand);
  font-size: 26px;
  margin: 0;
}

.why-stack p {
  color: var(--muted);
  margin: 0;
}

.why-stack p + p {
  margin-top: 12px;
}

.principle-panel ol {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.report-export,
.privacy-policy-grid,
.input-routes,
.module-grid,
.global-proof,
.ops-audit,
.difference-matrix {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.report-export div,
.privacy-policy-grid div,
.input-routes div,
.global-proof div,
.ops-audit div,
.difference-matrix div,
.module-grid article,
.bm-defense div {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

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

.bm-defense h3 {
  align-self: center;
}

.report-export strong,
.privacy-policy-grid strong,
.input-routes strong,
.global-proof strong,
.ops-audit strong,
.difference-matrix strong,
.module-grid strong,
.bm-defense strong,
.roadmap-note strong {
  color: var(--brand);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.report-export span,
.privacy-policy-grid span,
.input-routes span,
.global-proof span,
.ops-audit span,
.difference-matrix span,
.module-grid span,
.bm-defense span,
.roadmap-note span {
  color: var(--muted);
  display: block;
}

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

.journey-lane div {
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  padding: 16px;
}

.journey-lane b,
.journey-lane span {
  display: block;
}

.journey-lane b {
  color: rgba(255, 250, 241, 0.58);
  margin-bottom: 8px;
}

.roadmap-note {
  display: grid;
  gap: 6px;
}

.continue-hero {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin-bottom: 24px;
}

.continue-copy {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.continue-copy .eyebrow {
  color: var(--accent);
}

.continue-copy h2 {
  color: var(--brand);
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.continue-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 0;
}

.continue-panel {
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  padding: 24px;
}

.continue-panel h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.continue-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.continue-panel li {
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  padding: 12px 0;
}

.continue-section {
  margin-top: 24px;
}

.continue-section h2 {
  color: var(--brand);
  font-size: 30px;
  margin: 0 0 18px;
}

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

.continue-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 176px;
  padding: 18px;
}

.continue-card strong {
  color: var(--brand);
  display: block;
  font-size: 18px;
  margin-bottom: 9px;
}

.continue-card span {
  color: var(--muted);
  display: block;
}

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

.continue-price {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}

.continue-price.recommended {
  border-color: var(--accent);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent) 22%, transparent);
}

.continue-price .badge {
  right: 14px;
  top: 14px;
}

.continue-price h3 {
  margin: 0 0 8px;
}

.continue-price .price {
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 14px;
}

.continue-price ul {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.continue-price li + li {
  margin-top: 7px;
}

.continue-band {
  align-items: center;
  background: var(--brand);
  border-radius: var(--radius);
  color: #fffaf1;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  margin-top: 26px;
  padding: 28px;
}

.continue-band h2 {
  color: #fffaf1;
  margin: 0 0 8px;
}

.continue-band p {
  color: rgba(255, 250, 241, 0.78);
  margin: 0;
}

.continue-band a {
  background: #fffaf1;
  border-radius: var(--radius);
  color: var(--brand);
  font-weight: 900;
  padding: 12px 16px;
  white-space: nowrap;
}

.nav {
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 14px 22px;
}

.brand {
  align-items: baseline;
  display: flex;
  gap: 10px;
  min-width: 172px;
}

.brand strong {
  color: var(--brand);
  font-size: 20px;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  padding: 7px 10px;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--soft);
  border-color: color-mix(in srgb, var(--brand) 28%, transparent);
  color: var(--brand);
}

.hero {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--brand) 94%, #111 6%) 0%, var(--brand) 54%, color-mix(in srgb, var(--brand-2) 82%, #fff 18%) 100%);
  color: #fffaf1;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  margin: 0 auto;
  max-width: 1220px;
  min-height: 680px;
  padding: 78px 22px 64px;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.eyebrow {
  color: color-mix(in srgb, #fffaf1 78%, var(--soft) 22%);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.lead {
  color: rgba(255, 250, 241, 0.82);
  font-size: 19px;
  margin: 22px 0 0;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.btn.primary {
  background: #fffaf1;
  color: var(--brand);
}

.btn.secondary {
  border-color: rgba(255, 250, 241, 0.36);
  color: #fffaf1;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  max-width: 640px;
}

.hero-stats div {
  background: rgba(255, 250, 241, 0.09);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  padding: 14px;
}

.hero-stats strong {
  display: block;
  font-size: 19px;
}

.hero-stats span {
  color: rgba(255, 250, 241, 0.72);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.hero-visual {
  align-self: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 0.86fr 1.14fr;
}

.phone {
  align-self: center;
  background: #111815;
  border: 8px solid #202a25;
  border-radius: 34px;
  box-shadow: var(--shadow);
  min-height: 560px;
  overflow: hidden;
  padding: 18px;
}

.phone-screen {
  background: #fffaf1;
  border-radius: 24px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 508px;
  padding: 18px;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.phone-top strong {
  color: var(--brand);
}

.pill {
  background: var(--soft);
  border-radius: 999px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.chat {
  display: grid;
  gap: 9px;
}

.bubble {
  border-radius: var(--radius);
  font-size: 14px;
  padding: 11px 12px;
}

.bubble.user {
  background: var(--brand);
  color: #fffaf1;
  justify-self: end;
  max-width: 82%;
}

.bubble.ai {
  background: #ede8dc;
  color: var(--ink);
  max-width: 92%;
}

.mini-card {
  background: #fff;
  border: 1px solid #e5dece;
  border-radius: var(--radius);
  padding: 12px;
}

.mini-card h4 {
  color: var(--brand);
  font-size: 14px;
  margin: 0 0 8px;
}

.bars {
  display: grid;
  gap: 7px;
}

.bar {
  background: #eee8db;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.bar span {
  background: var(--accent);
  display: block;
  height: 100%;
}

.side-panel {
  align-self: center;
  display: grid;
  gap: 14px;
}

.panel {
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(255, 250, 241, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 18px;
}

.panel h3,
.panel h4 {
  color: var(--brand);
  margin: 0 0 8px;
}

.panel p {
  color: var(--muted);
  margin: 0;
}

.metric-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.metric {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 11px;
}

.metric strong {
  color: var(--brand);
  display: block;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: 64px 22px 0;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head h2 {
  color: var(--brand);
  font-size: 32px;
  line-height: 1.16;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

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

.feature {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 168px;
  padding: 18px;
}

.feature .icon {
  align-items: center;
  background: var(--soft);
  border-radius: var(--radius);
  color: var(--brand);
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  margin-bottom: 14px;
  width: 36px;
}

.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

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

.price-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}

.price-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(216, 103, 75, 0.18);
}

.price-card h3 {
  margin: 0 0 8px;
}

.price {
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 12px;
}

.price-card ul {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card li + li {
  margin-top: 7px;
}

.badge {
  background: var(--accent);
  border-radius: 999px;
  color: #fffaf1;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.timeline {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.timeline-row {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 180px 1fr;
  padding: 18px;
}

.timeline-row + .timeline-row {
  border-top: 1px solid var(--line);
}

.timeline-row strong {
  color: var(--brand);
}

.timeline-row span {
  color: var(--muted);
}

.reference {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding-bottom: 72px;
}

.reference-copy {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.reference-copy h2 {
  color: var(--brand);
  margin: 0 0 10px;
}

.reference-copy p {
  color: var(--muted);
  margin: 0 0 18px;
}

.reference-copy dl {
  display: grid;
  gap: 10px;
  grid-template-columns: 120px 1fr;
  margin: 0;
}

.reference-copy dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reference-copy dd {
  margin: 0;
}

.reference-shot {
  background: #161d19;
  border: 1px solid #101411;
  border-radius: var(--radius);
  display: block;
  overflow: hidden;
}

.reference-shot img {
  display: block;
  height: auto;
  width: 100%;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin: 0 auto;
  max-width: 1220px;
  padding: 22px;
}

.index-hero {
  background: var(--brand);
  color: #fffaf1;
  padding: 84px 22px 58px;
}

.index-hero-inner {
  margin: 0 auto;
  max-width: 1220px;
}

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

.index-hero p {
  color: rgba(255, 250, 241, 0.82);
  font-size: 19px;
  max-width: 780px;
}

.mockup-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
  padding: 36px 22px 72px;
}

.mockup-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.mockup-card img {
  background: #ede8dc;
  display: block;
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.mockup-card .card-body {
  padding: 16px;
}

.mockup-card h2 {
  color: var(--brand);
  font-size: 19px;
  margin: 0 0 6px;
}

.mockup-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.mockup-card a {
  color: var(--accent);
  font-weight: 900;
}

@media (max-width: 980px) {
  .night-layout,
  .privacy-vault,
  .download-flow,
  .global-layout,
  .premium-story,
  .blend-hero,
  .blend-report,
  .hybrid-intro,
  .hybrid-report,
  .story15-html-hero,
  .story15-live-app,
  .story15-opening,
  .story15-product-stage,
  .story15-report-flow,
  .dual-mode,
  .education-reframe,
  .admin-console {
    grid-template-columns: 1fr;
  }

  .acceptance-steps,
  .pricing-focus,
  .premium-plans,
  .blend-flow,
  .blend-retention,
  .hybrid-app-flow,
  .hybrid-bottom,
  .story15-screens,
  .story15-close,
  .toggle-board,
  .module-preview,
  .report-export,
  .privacy-policy-grid,
  .input-routes,
  .module-grid,
  .global-proof,
  .ops-audit,
  .difference-matrix,
  .journey-lane,
  .bm-defense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-stack {
    grid-template-columns: 1fr;
  }

  .report-board {
    grid-template-columns: 1fr 1fr;
  }

  .chart-card.large {
    grid-column: 1 / -1;
  }

  .story15-rules div {
    grid-template-columns: 44px 1fr;
  }

  .story15-rules em {
    grid-column: 2;
  }

  .story15-screens img {
    height: 460px;
  }

  .story15-hero-copy h2 {
    font-size: 52px;
  }

  .continue-hero,
  .continue-band {
    grid-template-columns: 1fr;
  }

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

  .hero-inner,
  .reference {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .phone {
    min-height: auto;
  }

  .phone-screen {
    min-height: 430px;
  }

  .feature-grid,
  .pricing-grid,
  .mockup-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .acceptance-steps,
  .pricing-focus,
  .premium-plans,
  .blend-flow,
  .blend-retention,
  .hybrid-app-flow,
  .hybrid-bottom,
  .story15-screens,
  .story15-close,
  .toggle-board,
  .module-preview,
  .report-board,
  .safety-row,
  .language-grid,
  .report-export,
  .privacy-policy-grid,
  .input-routes,
  .module-grid,
  .global-proof,
  .ops-audit,
  .difference-matrix,
  .journey-lane,
  .bm-defense {
    grid-template-columns: 1fr;
  }

  .roadmap-board article {
    grid-template-columns: 1fr;
  }

  .design-switcher {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .continue-grid,
  .continue-pricing {
    grid-template-columns: 1fr;
  }

  .nav-inner,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-stats,
  .feature-grid,
  .pricing-grid,
  .mockup-list {
    grid-template-columns: 1fr;
  }

  .story15-html-hero {
    min-height: auto;
    padding: 34px 22px;
  }

  .story15-hero-copy h2 {
    font-size: 40px;
  }

  .story15-live-phone {
    min-height: 460px;
  }

  .story15-screens-live article {
    min-height: auto;
  }

  .timeline-row,
  .reference-copy dl {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}

/* ---- concept 16: Warm Hearth Night ---- */
.night-hero-shot {
  margin: 28px 0 8px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(31, 39, 34, 0.18);
  border: 1px solid var(--line);
}
.night-hero-shot img {
  width: 100%;
  display: block;
}

.app-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  justify-items: center;
}
.app-screens figure {
  margin: 0;
  max-width: 320px;
  width: 100%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(31, 39, 34, 0.14);
}
.app-screens figure img {
  width: 100%;
  display: block;
  background: #fff;
}
.app-screens figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 720px) {
  .app-screens {
    grid-template-columns: 1fr;
  }
}

/* ============ concept 16: Warm Hearth Night ============ */
/* skipExact 페이지는 상단 PNG 없이 바로 콘텐츠로 시작 → 상단 보더/여백 제거 */
.exact-page.no-exact .continuation {
  margin-top: 0;
  border-top: none;
  padding-top: 40px;
}

/* hero: 좌 카피 / 우 정사각 이미지 */
.warm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 8px;
}
.warm-hero-copy .eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.warm-hero-copy h2 {
  color: var(--brand);
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.warm-hero-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 26px;
  max-width: 30em;
}
.warm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.warm-hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.warm-hero-cta a.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 30%, transparent);
}
.warm-hero-cta a.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.warm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.warm-hero-stats span {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--muted);
}
.warm-hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.warm-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* 16번 섹션 공통 상하 리듬 */
.continuation.variant-16 .night-layout,
.continuation.variant-16 .why-stack,
.continuation.variant-16 .app-screens,
.continuation.variant-16 .report-board,
.continuation.variant-16 .pricing-focus,
.continuation.variant-16 .soft-band {
  margin-top: 56px;
}

@media (max-width: 860px) {
  .warm-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .warm-hero-media {
    order: -1;
  }
  .warm-hero-media img {
    aspect-ratio: 16 / 11;
  }
  .continuation.variant-16 .night-layout,
  .continuation.variant-16 .why-stack,
  .continuation.variant-16 .app-screens,
  .continuation.variant-16 .report-board,
  .continuation.variant-16 .pricing-focus,
  .continuation.variant-16 .soft-band {
    margin-top: 40px;
  }
}
