:root {
  --bg: #ede2cf;
  --bg-soft: #fbf4e8;
  --ink-950: #1f231f;
  --ink-800: #38433e;
  --ink-600: #5f6d66;
  --line: rgba(60, 48, 31, 0.14);
  --teal: #15706c;
  --teal-soft: #e8f7f5;
  --orange: #d86b2e;
  --orange-soft: #fff1e7;
  --gold: #d2a126;
  --white: rgba(255, 255, 255, 0.96);
  --shadow-xl: 0 28px 72px rgba(84, 64, 37, 0.16);
  --shadow-lg: 0 18px 38px rgba(84, 64, 37, 0.13);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  color: var(--ink-950);
  background: linear-gradient(180deg, #f4ecdf 0%, #e6dbc7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 26, 26, 0.56), rgba(16, 26, 26, 0.48)),
    url("./assets/ai_boost_chalkboard_bg.png") center / cover no-repeat;
  background-attachment: fixed;
  opacity: 0.34;
  transform: scale(1.03);
  filter: saturate(0.92) contrast(1.04);
}

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

h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: -0.04em;
}

p,
li {
  overflow-wrap: anywhere;
}

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.2em;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(transparent 96%, rgba(95, 109, 102, 0.08) 100%);
  background-size: 100% 100%, 100% 10px;
  opacity: 0.45;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 20px));
  margin: 0 auto;
  padding: 12px 0 48px;
}

.hero,
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 228, 0.96));
  border: 1px solid rgba(109, 88, 58, 0.18);
  box-shadow: var(--shadow-xl);
}

.hero::before,
.card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  top: -150px;
  right: -120px;
  background: radial-gradient(circle, rgba(216, 107, 46, 0.2), transparent 70%);
}

.hero::after,
.card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  left: -120px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(21, 112, 108, 0.18), transparent 72%);
}

.hero > *,
.card > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: clamp(680px, 92vh, 860px);
  padding: 48px;
}

.hero-copy-full {
  max-width: none;
}

.hero-copy-full .lead {
  max-width: 1240px;
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 10px 16px;
  min-height: 56px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: 0 12px 26px rgba(84, 64, 37, 0.1);
}

.hero-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-brand p {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(21, 112, 108, 0.22);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(21, 112, 108, 0.08);
}

h1 {
  margin-top: 18px;
  max-width: 1320px;
  font-size: clamp(2.95rem, 5.25vw, 5rem);
  line-height: 1.08;
}

.hero-accent {
  color: var(--teal);
}

.subtitle {
  margin-top: 18px;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.6;
}

.subnote {
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.8;
}

.lead {
  margin-top: 20px;
  max-width: 760px;
  color: var(--ink-800);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  line-height: 1.82;
}

.banner {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(21, 112, 108, 0.18), rgba(216, 107, 46, 0.18));
  border: 1px solid rgba(21, 112, 108, 0.22);
  font-size: clamp(1.22rem, 2.1vw, 1.6rem);
  font-weight: 900;
  line-height: 1.7;
  box-shadow: 0 18px 32px rgba(84, 64, 37, 0.12);
}

.ai-assist-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.98), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(21, 112, 108, 0.2);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 20px rgba(21, 112, 108, 0.08);
}

.ai-assist-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(21, 112, 108, 0.36);
  animation: aiPulse 1.8s infinite;
}

.ai-assist-note-strong {
  margin-top: 0;
}

.ai-origin-card {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(21, 112, 108, 0.14), rgba(98, 130, 209, 0.1), rgba(216, 107, 46, 0.16)),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 112, 108, 0.18);
  box-shadow: var(--shadow-lg);
}

.ai-origin-card-expanded {
  margin-top: 0;
  padding: 26px;
}

.ai-origin-card-expanded::before {
  content: "";
  position: absolute;
  inset: -25% -12%;
  background: conic-gradient(
    from 180deg,
    rgba(21, 112, 108, 0),
    rgba(21, 112, 108, 0.16),
    rgba(98, 130, 209, 0.16),
    rgba(216, 107, 46, 0.14),
    rgba(21, 112, 108, 0)
  );
  opacity: 0.55;
  animation: aiOriginAura 11s linear infinite;
}

.ai-origin-card-expanded > * {
  position: relative;
  z-index: 1;
}

.ai-origin-head {
  display: grid;
  gap: 10px;
}

.ai-origin-kicker {
  color: var(--teal);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.7;
}

.ai-origin-head p:last-child {
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.78;
}

.ai-origin-doc-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-top: 2px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 112, 108, 0.96), rgba(15, 94, 90, 0.94));
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(21, 112, 108, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ai-origin-doc-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(21, 112, 108, 0.24);
  filter: brightness(1.03);
}

.ai-origin-demo-expanded {
  grid-template-columns: minmax(0, 1.06fr) 230px minmax(0, 1.04fr);
  gap: 20px;
  margin-top: 22px;
}

.ai-origin-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 210px minmax(0, 1.05fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}

.ai-origin-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: 0 12px 24px rgba(84, 64, 37, 0.08);
}

.ai-meet-window,
.ai-proposal-window {
  min-height: 100%;
}

.ai-meet-bar,
.ai-proposal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34, 46, 41, 0.08);
}

.ai-meet-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-meet-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ai-meet-controls .is-red {
  background: #f06b5f;
}

.ai-meet-controls .is-yellow {
  background: #efbd49;
}

.ai-meet-controls .is-green {
  background: #5ac26f;
}

.ai-meet-status,
.ai-proposal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(21, 112, 108, 0.18);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.ai-meet-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(21, 112, 108, 0.36);
  animation: aiPulse 1.6s infinite;
}

.ai-meet-participants {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 0 2px;
}

.ai-meet-avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #15706c, #6282d1);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(21, 112, 108, 0.22);
}

.ai-meet-avatar.is-alt {
  background: linear-gradient(135deg, #d86b2e, #f3a55e);
}

.ai-meet-avatar.is-soft {
  background: linear-gradient(135deg, #55736b, #8aa29a);
}

.ai-meet-participants p {
  color: var(--ink-800);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.6;
}

.ai-origin-label {
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-origin-lines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ai-origin-lines-meet {
  margin-top: 12px;
}

.ai-origin-source-line,
.ai-origin-output-line {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.65;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.ai-origin-source-line {
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(216, 107, 46, 0.12);
  color: var(--ink-800);
  opacity: 0.46;
  transform: translateX(-12px) scale(0.985);
}

.ai-origin-source-line.is-active {
  opacity: 1;
  transform: translateX(10px) scale(1.02);
  border-color: rgba(216, 107, 46, 0.34);
  box-shadow: 0 14px 28px rgba(216, 107, 46, 0.18);
}

.ai-origin-output-line {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 112, 108, 0.1);
  color: var(--ink-600);
  opacity: 0.18;
  transform: translateX(18px) scale(0.98);
}

.ai-origin-output-line.is-active {
  opacity: 1;
  transform: translateX(0) scale(1.015);
  color: var(--ink-950);
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.98), rgba(255, 255, 255, 0.94));
  border-color: rgba(21, 112, 108, 0.26);
  box-shadow: 0 16px 30px rgba(21, 112, 108, 0.14);
}

.ai-meet-time {
  display: inline-block;
  min-width: 54px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.ai-meet-speaker {
  display: inline-block;
  margin-right: 10px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
}

.ai-meet-quote {
  color: var(--ink-800);
}

.ai-origin-stage-wrap {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100%;
}

.ai-origin-stage-wrap::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 10px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(21, 112, 108, 0.12), rgba(98, 130, 209, 0.28), rgba(216, 107, 46, 0.16));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 22px rgba(98, 130, 209, 0.12);
}

.ai-origin-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ai-origin-beam::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 44px;
  height: 170px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(98, 130, 209, 0.54) 42%, rgba(98, 130, 209, 0));
  filter: blur(5px);
  animation: aiOriginBeam 3s ease-in-out infinite;
}

.ai-origin-flow {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: center;
}

.ai-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(34, 46, 41, 0.08);
  color: var(--ink-600);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.4;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.ai-stage.is-active {
  transform: translateX(10px) scale(1.06);
  background: linear-gradient(135deg, rgba(21, 112, 108, 0.96), rgba(98, 130, 209, 0.92));
  border-color: rgba(21, 112, 108, 0.3);
  color: #fff;
  box-shadow: 0 18px 34px rgba(21, 112, 108, 0.22);
}

.ai-stage.is-passed {
  background: rgba(21, 112, 108, 0.14);
  color: var(--teal);
  transform: translateX(4px);
}

.ai-output-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.ai-output-preview-card {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 112, 108, 0.08);
  color: var(--ink-600);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  opacity: 0.24;
  transform: translateY(12px) scale(0.98);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.ai-output-preview-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.02);
  color: var(--ink-950);
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.98), rgba(255, 255, 255, 0.94));
  border-color: rgba(21, 112, 108, 0.22);
  box-shadow: 0 12px 24px rgba(21, 112, 108, 0.12);
}

.ai-origin-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.ai-origin-summary-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 46, 41, 0.1);
  box-shadow: 0 12px 24px rgba(84, 64, 37, 0.08);
}

.ai-origin-summary-card strong {
  display: block;
  color: var(--ink-950);
  font-size: 1rem;
  line-height: 1.5;
}

.ai-origin-summary-card p {
  margin-top: 8px;
  color: var(--ink-800);
  font-size: 0.94rem;
  line-height: 1.7;
}

.ai-origin-note {
  margin-top: 16px;
  color: var(--teal);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.72;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-step-emphasis {
  display: inline-block;
  color: #cd3f3a;
  font-weight: 900;
  text-shadow: 0 6px 18px rgba(205, 63, 58, 0.18);
  animation: heroEmphasisBeat 1.5s ease-in-out infinite;
}

.tag-row span,
.prompt-tags span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.tag-row span {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(56, 67, 62, 0.14);
  box-shadow: 0 10px 18px rgba(84, 64, 37, 0.08);
}

.hero-side {
  display: grid;
  align-content: start;
  gap: 20px;
}

.hero-visual {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-visual-main {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid rgba(34, 46, 41, 0.08);
}

.hero-metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px 0;
}

.hero-metric {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(21, 112, 108, 0.12);
}

.hero-metric strong,
.hero-thumb span,
.closing-chip-grid span {
  display: block;
}

.hero-metric strong {
  font-size: 1.28rem;
  line-height: 1.35;
}

.hero-metric span {
  margin-top: 6px;
  color: var(--ink-800);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 20px 20px;
}

.hero-thumb {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 46, 41, 0.08);
}

.hero-thumb img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  object-position: top center;
}

.hero-thumb span {
  padding: 12px 14px 14px;
  color: var(--ink-800);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

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

.hero-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.proof-card,
.hero-note,
.mini-card,
.body-panel,
.prompt-panel,
.insight-panel,
.quote-panel,
.pitch-card,
.trust-band,
.closing-quote {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.card-summary strong,
.lead strong,
.support-copy strong,
.proof-note strong,
.partner-point-list strong,
.closing-list-card strong,
.proof-position-card strong {
  color: var(--teal);
  font-weight: 900;
}

.proof-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.95));
}

.proof-card-mini {
  min-height: 100%;
}

.proof-card-step {
  display: grid;
  align-content: start;
  gap: 2px;
}

.proof-card-mini .proof-value {
  font-size: clamp(1.45rem, 2vw, 1.92rem);
}

.proof-card-mini .proof-note {
  font-size: 0.95rem;
  line-height: 1.68;
}

.proof-label,
.hero-note-kicker,
.mini-label,
.insight-label,
.quote-label,
.prompt-title {
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-value {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.proof-note,
.hero-note p,
.card-summary,
.card li,
.pitch-card p,
.trust-band p,
.closing-points li,
.flow-step p,
.flow-notes li {
  color: var(--ink-800);
  line-height: 1.85;
}

.proof-note {
  margin-top: 8px;
  font-size: 1.02rem;
}

.hero-note {
  padding: 24px;
}

.hero-note p {
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.deck {
  display: grid;
  gap: 54px;
  margin-top: 34px;
}

.deck > #ai-origin {
  order: 1;
}

.deck > #proof-intro {
  order: 2;
}

.deck > #proof-services {
  order: 3;
}

.deck > #proof-automation {
  order: 4;
}

.deck > #partner-foundation {
  order: 5;
}

.deck > #support {
  order: 6;
}

.deck > #reality {
  order: 7;
}

.deck > #options {
  order: 8;
}

.deck > #pillars {
  order: 9;
}

.deck > #roadmap {
  order: 10;
}

.deck > #curriculum {
  order: 11;
}

.deck > #tools {
  order: 12;
}

.deck > #closing {
  order: 13;
}

.card {
  min-height: clamp(680px, 92vh, 860px);
  padding: 42px 44px;
}

.card-head {
  max-width: none;
}

.card-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.card-no,
.card-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-no {
  min-width: 44px;
  background: var(--teal);
  color: #fff;
}

.card-theme {
  padding: 0 16px;
  background: rgba(216, 107, 46, 0.12);
  color: var(--orange);
}

.card h2 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 1.14;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.card-summary {
  margin-top: 16px;
  max-width: 1240px;
  font-size: clamp(1.12rem, 1.9vw, 1.34rem);
  line-height: 1.8;
  color: var(--ink-800);
}

.card-body {
  margin-top: 32px;
}

.split-layout,
.two-column-cards,
.two-column-list {
  display: grid;
  gap: 18px;
}

.split-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
}

.two-column-list,
.two-column-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-panel,
.prompt-panel,
.insight-panel,
.quote-panel,
.mini-card,
.pitch-card,
.closing-quote {
  padding: 24px 26px;
}

.body-panel ul,
.mini-card ul,
.two-column-list ul,
.flow-notes,
.closing-points {
  margin-top: 6px;
}

.card li,
.pitch-card p,
.closing-points li {
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.card li + li,
.pitch-card p + p,
.closing-points li + li,
.flow-notes li + li {
  margin-top: 10px;
}

.insight-panel,
.quote-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.insight-panel {
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.96), rgba(255, 255, 255, 0.92));
}

.insight-panel.strong {
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.95), rgba(255, 255, 255, 0.92));
}

.insight-quote,
.quote-text {
  margin-top: 12px;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  font-weight: 900;
  line-height: 1.7;
}

.prompt-panel {
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.95), rgba(255, 255, 255, 0.92));
}

.prompt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.prompt-tags span {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 107, 46, 0.15);
  color: var(--ink-950);
}

.mini-card {
  min-height: 100%;
}

.mini-card.caution {
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.94), rgba(255, 255, 255, 0.92));
}

.compare-dream {
  background: linear-gradient(180deg, rgba(255, 242, 241, 0.98), rgba(255, 255, 255, 0.92));
  border: 2px solid rgba(196, 69, 69, 0.16);
}

.compare-real {
  background: linear-gradient(180deg, rgba(240, 251, 244, 0.98), rgba(255, 255, 255, 0.92));
  border: 2px solid rgba(35, 147, 82, 0.16);
}

.compare-dream h3,
.compare-real h3,
.option-card h3 {
  margin-top: 10px;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.5;
}

.big-quote {
  position: relative;
  margin-top: 26px;
  padding: 24px 28px 24px 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(21, 112, 108, 0.18), rgba(216, 107, 46, 0.18)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 112, 108, 0.22);
  box-shadow: var(--shadow-lg);
  font-size: clamp(1.4rem, 2.2vw, 1.82rem);
  font-weight: 900;
  line-height: 1.72;
}

.big-quote::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--orange));
}

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

.pillar-grid,
.curriculum-grid,
.pillar-mini-grid {
  display: grid;
  gap: 18px;
}

.pillar-grid,
.curriculum-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pillar-card,
.curriculum-card,
.pillar-mini-card {
  min-height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.pillar-card {
  display: grid;
  grid-template-rows: auto minmax(104px, auto) minmax(114px, auto) 1fr;
  align-content: start;
  padding: 24px;
  border-radius: 28px;
}

.pillar-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-card h3 {
  margin-top: 12px;
  display: grid;
  align-content: start;
  gap: 2px;
  font-size: clamp(1.22rem, 1.65vw, 1.55rem);
  line-height: 1.42;
  min-height: 0;
}

.pillar-title-top,
.pillar-title-bottom {
  display: block;
}

.pillar-title-top {
  text-wrap: balance;
}

.pillar-copy,
.pillar-program,
.curriculum-sub,
.pillar-mini-card span {
  color: var(--ink-800);
  line-height: 1.8;
}

.pillar-copy {
  margin-top: 12px;
  font-size: 0.98rem;
  min-height: 5.8em;
}

.pillar-program {
  margin-top: 14px;
  font-size: 0.96rem;
  font-weight: 800;
}

.pillar-flow {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.pillar-stage {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 16px 16px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: 0 10px 22px rgba(84, 64, 37, 0.08);
}

.pillar-stage-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 112, 108, 0.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pillar-stage strong {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.pillar-stage p {
  margin-top: 8px;
  color: var(--ink-800);
  font-size: 0.92rem;
  line-height: 1.72;
}

.pillar-teal {
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.98), rgba(255, 255, 255, 0.92));
}

.pillar-orange {
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.98), rgba(255, 255, 255, 0.92));
}

.pillar-blue {
  background: linear-gradient(180deg, rgba(242, 246, 255, 0.98), rgba(255, 255, 255, 0.92));
}

.pillar-gold {
  background: linear-gradient(180deg, rgba(250, 246, 234, 0.98), rgba(255, 255, 255, 0.92));
}

.curriculum-summary-head {
  display: grid;
  gap: 6px;
}

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

.curriculum-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 235, 0.94));
}

.curriculum-card h3 {
  margin-top: 12px;
  font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  line-height: 1.5;
}

.curriculum-sub {
  margin-top: 10px;
  font-size: 0.95rem;
}

.curriculum-card ul {
  margin-top: 14px;
}

.curriculum-card li {
  font-size: 0.98rem;
}

.pillar-mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  gap: 14px;
}

.pillar-mini-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.pillar-mini-card strong {
  font-size: 1rem;
  line-height: 1.55;
}

.pillar-mini-card span {
  font-size: 0.92rem;
}

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

.option-card {
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.option-card.option-high {
  background: linear-gradient(180deg, rgba(255, 233, 231, 0.99), rgba(255, 255, 255, 0.94));
  border: 2px solid rgba(196, 69, 69, 0.24);
}

.option-card.recommended {
  background: linear-gradient(180deg, rgba(229, 248, 235, 0.99), rgba(255, 255, 255, 0.95));
  border: 2px solid rgba(35, 147, 82, 0.3);
  box-shadow: 0 22px 40px rgba(35, 147, 82, 0.12);
}

.option-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 107, 46, 0.18);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.option-copy {
  margin-top: 12px;
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.8;
}

.option-price {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 46, 41, 0.12);
}

.option-price span,
.option-price small {
  display: block;
}

.option-price span {
  color: var(--ink-600);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.option-price strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.45rem, 2vw, 1.92rem);
  line-height: 1.3;
}

.option-price small {
  margin-top: 8px;
  color: var(--ink-800);
  font-size: 0.92rem;
  line-height: 1.65;
}

.option-price-best {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(35, 147, 82, 0.12), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(35, 147, 82, 0.18);
  transform-origin: center;
  animation: optionPricePulse 3.8s ease-in-out infinite;
}

.option-price-best::after {
  content: "";
  position: absolute;
  inset: -40% -18%;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.72) 50%, transparent 82%);
  transform: translateX(-135%) rotate(8deg);
  animation: optionPriceShine 5.2s ease-in-out infinite;
}

.option-price-best span,
.option-card.recommended .option-price strong {
  color: #1d7f49;
}

.option-card ul {
  margin-top: 14px;
}

.image-card {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(34, 46, 41, 0.08);
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.92), rgba(232, 247, 245, 0.92));
}

.image-copy {
  padding: 18px 20px 20px;
}

.image-copy h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.5;
}

.image-copy p {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: 0.98rem;
  line-height: 1.82;
}

.chapter-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.97), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(216, 107, 46, 0.24);
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(216, 107, 46, 0.08);
}

.mini-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 247, 245, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(21, 112, 108, 0.22);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(21, 112, 108, 0.08);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(216, 107, 46, 0.2);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.support-copy {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.86;
}

.proof-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.proof-head {
  max-width: none;
}

.proof-head h2 {
  max-width: none;
  text-wrap: pretty;
}

.proof-lead-line {
  margin-top: 18px;
  font-size: clamp(1.3rem, 2.2vw, 1.72rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1.65;
}

.proof-positioning {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.proof-position-card,
.proof-block {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.95));
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: var(--shadow-lg);
}

.proof-position-card {
  padding: 24px 26px;
}

.proof-position-card h3,
.proof-block-head h3 {
  margin-top: 10px;
  font-size: clamp(1.24rem, 2vw, 1.74rem);
  line-height: 1.5;
}

.proof-position-card p:last-child {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.78;
}

.proof-body {
  display: grid;
  gap: 24px;
}

.proof-block {
  padding: 26px;
}

.proof-block-head {
  margin-bottom: 18px;
}

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

.proof-service-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: 0 14px 28px rgba(84, 64, 37, 0.1);
}

.proof-service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.proof-service-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
}

.proof-service-copy h4,
.proof-stat-card h4 {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.5;
}

.proof-service-number {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.proof-service-copy p {
  color: var(--ink-800);
  font-size: 0.95rem;
  line-height: 1.72;
}

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

.proof-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 26px;
  align-items: end;
}

.proof-intro-copy {
  max-width: 860px;
}

.proof-intro-visual {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.proof-intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.proof-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px 22px;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(255, 255, 255, 0.94));
}

.proof-intro-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 112, 108, 0.12);
  color: var(--ink-950);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.proof-visual-stack {
  display: grid;
  gap: 16px;
}

.proof-visual-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.proof-visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.proof-visual-copy {
  padding: 18px 20px 20px;
}

.proof-visual-copy strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.5;
}

.proof-visual-copy p {
  margin-top: 8px;
  color: var(--ink-800);
  font-size: 0.98rem;
  line-height: 1.72;
}

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

.proof-stat-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 235, 0.95));
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: var(--shadow-lg);
}

.proof-stat-card h3,
.proof-stat-card h4 {
  margin-top: 12px;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.45;
}

.proof-stat-card p {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: 0.95rem;
  line-height: 1.7;
}

.proof-metric {
  margin-top: 12px;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

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

.impact-metric-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.95));
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: var(--shadow-lg);
}

.impact-metric-value {
  margin-top: 4px;
  font-size: clamp(2.15rem, 2.8vw, 3.15rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.impact-metric-value-long {
  font-size: clamp(1.4rem, 1.9vw, 1.9rem);
  line-height: 1.45;
}

.impact-metric-card h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  line-height: 1.5;
}

.impact-metric-card p {
  color: var(--ink-800);
  font-size: 0.95rem;
  line-height: 1.72;
}

.impact-metric-divider {
  margin: 0 8px;
  color: var(--ink-600);
}

.proof-metric-long {
  font-size: clamp(1.14rem, 1.55vw, 1.46rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.metric-teal {
  color: var(--teal);
}

.metric-orange {
  color: var(--orange);
}

.metric-blue {
  color: #6282d1;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 22px;
}

.support-head {
  max-width: none;
}

.support-head h2 {
  max-width: none;
  text-wrap: pretty;
}

.support-head .card-summary {
  max-width: 1280px;
}

.support-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 24px;
  align-items: end;
}

.support-intro-copy {
  max-width: 860px;
}

.support-intro-visual {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.support-intro-visual img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}

.support-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(255, 255, 255, 0.94));
}

.support-intro-points-inline {
  margin-top: 24px;
  padding: 0;
  background: none;
}

.support-intro-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 107, 46, 0.14);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.training-card,
.partner-card-detail {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.partner-card-page,
.support-training-full {
  padding: 30px;
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 18px;
  align-items: center;
}

.training-logo {
  width: 100px;
  justify-self: end;
}

.training-banner {
  overflow: hidden;
  margin-top: 18px;
  border-radius: 22px;
}

.training-banner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.promise-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(98, 130, 209, 0.08);
  border: 1px solid rgba(98, 130, 209, 0.16);
}

.promise-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.promise-card p {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: 16px;
  line-height: 1.72;
}

.tag-row-support {
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 46, 41, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 112, 108, 0.12);
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.partner-heading {
  margin-top: 16px;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.5;
}

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

.partner-proof-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 235, 0.95));
  border: 1px solid rgba(34, 46, 41, 0.12);
}

.partner-proof-card img {
  width: 112px;
  margin-top: 14px;
}

.partner-proof-card h4 {
  margin-top: 12px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.partner-proof-card p {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: 0.98rem;
  line-height: 1.78;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: var(--shadow-lg);
}

.partner-link span {
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.6;
}

.partner-point-list {
  margin-top: 18px;
}

.support-quote {
  margin-top: 20px;
  font-size: 1.35rem;
}

.roadmap-list {
  display: grid;
  gap: 18px;
}

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

.roadmap-flow-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 235, 0.95));
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: var(--shadow-lg);
}

.roadmap-flow-card h3 {
  margin-top: 12px;
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  line-height: 1.5;
}

.roadmap-flow-list {
  margin-top: 14px;
  padding-left: 1.1em;
}

.roadmap-flow-list li {
  margin-top: 10px;
  color: var(--ink-800);
  font-size: 0.95rem;
  line-height: 1.72;
}

.roadmap-flow-list li:first-child {
  margin-top: 0;
}

.roadmap-card-detail {
  display: grid;
  grid-template-columns: 150px 1fr 220px;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.roadmap-step {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.roadmap-card-detail h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.45;
}

.roadmap-card-detail ul {
  margin-top: 14px;
}

.roadmap-time {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 112, 108, 0.12);
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.closing-grid-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
}

.closing-side-grid {
  display: grid;
  gap: 18px;
}

.closing-list-card {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 235, 0.95));
  border: 1px solid rgba(34, 46, 41, 0.12);
  box-shadow: var(--shadow-lg);
}

.closing-list-card h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.62rem);
  line-height: 1.5;
}

.closing-list-card ul {
  margin-top: 14px;
}

.closing-invest-card {
  background: linear-gradient(180deg, rgba(240, 251, 244, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(35, 147, 82, 0.16);
}

.closing-invest-note {
  margin-top: 14px;
  color: var(--ink-800);
  font-size: 0.92rem;
  line-height: 1.7;
}

.closing-enrollment-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(21, 112, 108, 0.24), rgba(216, 107, 46, 0.22));
  border: 1px solid rgba(21, 112, 108, 0.2);
  box-shadow: var(--shadow-lg);
}

.closing-enrollment-note strong {
  font-size: clamp(1.18rem, 1.6vw, 1.46rem);
  line-height: 1.5;
}

.closing-enrollment-note span {
  color: var(--ink-800);
  font-size: 0.96rem;
  line-height: 1.65;
}

.closing-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.closing-chip-grid span {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 241, 231, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(216, 107, 46, 0.18);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 10px 20px rgba(84, 64, 37, 0.08);
}

.footer-note {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(34, 46, 41, 0.08);
}

.footer-note p {
  color: var(--ink-800);
  font-size: 0.96rem;
  line-height: 1.8;
}

.curriculum-note {
  margin-top: 16px;
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.82;
}

.proof-list ul {
  margin-top: 24px;
  columns: 2;
  column-gap: 28px;
}

.proof-list li {
  break-inside: avoid;
}

.trust-band {
  margin-top: 22px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(21, 112, 108, 0.1), rgba(216, 107, 46, 0.1));
}

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

.flow-step {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.flow-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.flow-step h3 {
  margin-top: 16px;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.flow-step p {
  margin-top: 10px;
  font-size: 0.98rem;
}

.flow-notes {
  margin-top: 22px;
  padding: 24px 26px 24px 48px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.pitch-card {
  max-width: 1040px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(255, 255, 255, 0.92));
}

.closing-body {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: calc(min(82vh, 780px) - 230px);
}

.closing-quote {
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(21, 112, 108, 0.2), rgba(216, 107, 46, 0.18)),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 112, 108, 0.16);
}

.closing-main-card {
  display: grid;
  align-content: start;
  gap: 0;
}

.closing-quote p {
  font-size: clamp(1.55rem, 2.7vw, 2.32rem);
  font-weight: 900;
  line-height: 1.82;
}

.closing-main-card > p:first-child {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.55;
}

.closing-main-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 12px;
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.closing-main-list li {
  display: grid;
  grid-template-rows: repeat(3, auto);
  align-content: start;
  height: 100%;
  min-height: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 46, 41, 0.12);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 10px 20px rgba(84, 64, 37, 0.08);
}

.closing-main-list li span {
  display: block;
}

.closing-cta-quote {
  margin-top: 20px;
  font-size: 1.28rem;
}

.closing-ai-proof {
  margin-top: 16px;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.7;
}

.closing-points {
  max-width: 1100px;
  padding-left: 1.2em;
}

.metric-counter,
.metric-inline-counter {
  display: inline-block;
  min-width: 1ch;
}

@keyframes aiPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 112, 108, 0.34);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(21, 112, 108, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(21, 112, 108, 0);
  }
}

@keyframes optionPricePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 28px rgba(35, 147, 82, 0.12);
  }

  35% {
    transform: scale(1.03);
    box-shadow: 0 22px 42px rgba(35, 147, 82, 0.2);
  }

  62% {
    transform: scale(0.995);
    box-shadow: 0 16px 30px rgba(35, 147, 82, 0.14);
  }
}

@keyframes optionPriceShine {
  0%,
  100% {
    transform: translateX(-135%) rotate(8deg);
    opacity: 0;
  }

  12% {
    opacity: 0.18;
  }

  36% {
    transform: translateX(135%) rotate(8deg);
    opacity: 0.42;
  }

  48% {
    opacity: 0;
  }
}

@keyframes heroEmphasisBeat {
  0%,
  100% {
    transform: scale(0.98);
  }

  38% {
    transform: scale(1.12);
  }

  58% {
    transform: scale(1.02);
  }
}

@keyframes aiOriginAura {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.06);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes aiOriginBeam {
  0% {
    transform: translate(-50%, -8%);
    opacity: 0.18;
  }

  18% {
    opacity: 0.6;
  }

  52% {
    transform: translate(-50%, 115%);
    opacity: 0.88;
  }

  78% {
    opacity: 0.22;
  }

  100% {
    transform: translate(-50%, 205%);
    opacity: 0;
  }
}

.support-visual-image {
  width: 100%;
  margin-top: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 46, 41, 0.08);
  box-shadow: var(--shadow-lg);
}

.partner-badge-image {
  width: min(220px, 72%);
  margin-top: 18px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 20px;
  padding: 0 6px;
}

.footer p {
  color: var(--ink-600);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.05s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.05s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1100px) {
  .hero,
  .split-layout,
  .two-column-cards,
  .two-column-list,
  .proof-detail-layout,
  .proof-intro-layout,
  .support-intro-layout,
  .support-layout,
  .closing-grid-detail {
    grid-template-columns: 1fr;
  }

  .option-grid,
  .pillar-grid,
  .curriculum-grid,
  .impact-metric-grid,
  .template-grid,
  .proof-showcase,
  .roadmap-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .card {
    min-height: auto;
  }

  .proof-stat-grid,
  .hero-proof-strip,
  .partner-proof-grid,
  .promise-grid,
  .pillar-mini-grid,
  .closing-main-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-positioning,
  .proof-service-grid,
  .proof-stat-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-card-detail {
    grid-template-columns: 1fr;
  }

  .ai-origin-demo {
    grid-template-columns: 1fr;
  }

  .ai-origin-demo-expanded {
    grid-template-columns: 1fr;
  }

  .ai-origin-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: stretch;
  }

  .ai-origin-stage-wrap::before,
  .ai-origin-beam {
    display: none;
  }

  .roadmap-time {
    justify-self: start;
  }

  .proof-list ul {
    columns: 1;
  }

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

@media (max-width: 780px) {
  body::after {
    background-attachment: scroll;
    opacity: 0.34;
  }

  .page {
    width: min(100vw - 16px, 100%);
    padding-top: 10px;
  }

  .hero,
  .card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .card h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .subtitle,
  .banner,
  .closing-quote p,
  .insight-quote,
  .quote-text {
    font-size: 1.1rem;
  }

  .proof-stat-grid,
  .hero-metric-strip,
  .hero-thumb-row,
  .hero-proof-strip,
  .impact-metric-grid,
  .partner-proof-grid,
  .promise-grid,
  .training-hero,
  .option-grid,
  .pillar-grid,
  .curriculum-grid,
  .template-grid,
  .closing-chip-grid,
  .closing-main-list,
  .roadmap-flow-grid {
    grid-template-columns: 1fr;
  }

  .proof-positioning,
  .proof-service-grid,
  .proof-stat-grid-compact {
    grid-template-columns: 1fr;
  }

  .ai-origin-flow {
    grid-template-columns: 1fr;
  }

  .ai-origin-summary-grid,
  .ai-output-preview-grid {
    grid-template-columns: 1fr;
  }

  .ai-meet-bar,
  .ai-proposal-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-main-list li {
    min-height: 0;
  }

  .pillar-card {
    grid-template-rows: auto auto auto auto;
  }

  .pillar-copy {
    min-height: 0;
  }

  .pillar-flow {
    grid-template-rows: none;
  }

  .training-logo {
    justify-self: start;
  }

  .proof-intro-visual img {
    min-height: 280px;
  }

  .support-intro-visual img {
    height: 240px;
  }

  .proof-value {
    font-size: 2rem;
  }

  .footer {
    padding-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .option-price-best,
  .option-price-best::after,
  .ai-assist-note::before,
  .ai-origin-card-expanded::before,
  .ai-origin-beam::before,
  .ai-meet-live-dot,
  .hero-step-emphasis {
    animation: none;
  }
}
