:root {
  --blue: #2563eb;
  --blue-2: #60a5fa;
  --blue-3: #eaf2ff;
  --blue-4: #f5f9ff;
  --coral: #ff6b5c;
  --green: #22c55e;
  --ink: #071226;
  --muted: #52627a;
  --line: #d6e5fb;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(37, 99, 235, 0.13);
  --shadow-soft: 0 10px 28px rgba(12, 30, 62, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 760px;
  --heading-size: 42px;
  --heading-size-fluid: clamp(2rem, 5.8vw, var(--heading-size));
  --body-size: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(234, 242, 255, 0.94), rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0.96) 70%),
    var(--paper);
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 40px), 1120px);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 229, 251, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(8, 34, 79, 0.1);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(145deg, var(--blue), #2db7ff);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -4px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
}

.brand-name {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  color: var(--ink);
}

.trademark-symbol {
  margin-left: 2px;
  font-size: 0.42em;
  line-height: 0;
  vertical-align: super;
}

.nav {
  display: flex;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  border-radius: 999px;
  padding: 9px 14px;
}

.nav a:hover {
  background: var(--blue-3);
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section {
  position: relative;
  padding-block: clamp(72px, 11vw, 128px);
  overflow: hidden;
}

.section-bleed {
  overflow: hidden;
}

.section-soft {
  background:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(234, 242, 255, 0.8), rgba(255, 255, 255, 0.96));
  background-size: 26px 26px, 26px 26px, auto;
}

.hero {
  position: relative;
  min-height: 94svh;
  padding-top: clamp(120px, 12vw, 160px);
  padding-bottom: clamp(46px, 8vw, 86px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(115deg, #fff 0%, #fff 48%, #e7f2ff 48.2%, #cfe6ff 100%);
  background-size: 30px 30px, 30px 30px, auto;
}

.hero-bg::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16%;
  width: 50%;
  height: 82%;
  background: rgba(96, 165, 250, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 56% 0 0 0;
  transform: rotate(-7deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.mobile-brand {
  margin-bottom: 34px;
}

.hero .mobile-brand {
  display: none;
}

.eyebrow {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.28);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.sp-break {
  display: none;
}

.mobile-break {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: var(--heading-size-fluid);
  max-width: 840px;
  word-break: break-word;
}

h1 span,
h2 span {
  color: var(--blue);
}

.text-nowrap {
  color: inherit;
  white-space: nowrap;
}

h2 {
  font-size: var(--heading-size-fluid);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 30px;
  color: #16233a;
  font-size: var(--body-size);
  font-weight: 700;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

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

.button-primary {
  min-width: min(100%, 430px);
  color: #fff;
  background: var(--coral);
  box-shadow: 0 20px 36px rgba(255, 107, 92, 0.28);
}

.button-primary:hover {
  background: #ff5948;
  box-shadow: 0 24px 42px rgba(255, 107, 92, 0.34);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px 28px;
  color: #fff;
  background: linear-gradient(135deg, #ff7567 0%, #ff493b 100%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow:
    0 20px 36px rgba(255, 107, 92, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: left;
}

.button-primary.cta-button {
  min-width: min(100%, 500px);
}

.cta-button:hover {
  background: linear-gradient(135deg, #ff6658 0%, #ff3f30 100%);
  box-shadow:
    0 24px 42px rgba(255, 107, 92, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.cta-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.cta-icon svg,
.button .cta-icon svg {
  width: 25px;
  height: 25px;
}

.cta-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
}

.cta-main {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.cta-button-nav {
  min-height: 48px;
  padding: 7px 18px 7px 12px;
  gap: 9px;
  white-space: nowrap;
}

.cta-button-nav .cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
}

.cta-button-nav .cta-icon svg {
  width: 19px;
  height: 19px;
}

.cta-button-nav .cta-main {
  font-size: 0.9rem;
}

.cta-button-nav .cta-sub {
  font-size: 0.56rem;
  letter-spacing: 0;
}

.button-secondary {
  min-width: min(100%, 380px);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--blue);
}

.button-secondary:hover {
  background: var(--blue-3);
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 610px;
  margin-top: 22px;
  padding: 18px;
  background: rgba(234, 242, 255, 0.8);
  border: 1px solid rgba(214, 229, 251, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #16233a;
  font-weight: 800;
}

.hero-note strong {
  color: var(--blue);
}

.note-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.note-icon svg {
  width: 34px;
  height: 34px;
}

.audience-chips,
.trust-row,
.tag-list,
.profile-tags,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-chips {
  margin-top: 24px;
}

.hero .audience-chips {
  justify-content: center;
}

.audience-chips span,
.trust-row span,
.tag-list span,
.profile-tags span,
.pill-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 13px;
  color: var(--blue);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 10%;
  z-index: -1;
  background: linear-gradient(150deg, rgba(234, 242, 255, 0.12), rgba(96, 165, 250, 0.3));
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 48% 0 0 18%;
  transform: skewX(-6deg);
}

.hero-visual img {
  width: min(96%, 560px);
  height: 560px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
  filter: drop-shadow(0 26px 32px rgba(19, 41, 78, 0.18));
}

.speech-bubble {
  position: absolute;
  top: 2%;
  right: 2%;
  z-index: 2;
  max-width: 230px;
  padding: 22px 28px;
  color: var(--blue);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--blue-2);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.floating-points {
  position: absolute;
  top: 28%;
  right: 0;
  display: grid;
  gap: 14px;
  width: min(48%, 270px);
}

.floating-points div,
.info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.5;
}

.floating-points svg {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.info-card {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 24px;
  width: 100%;
  color: #16233a;
  text-align: center;
}

.info-card span {
  padding: 11px 8px;
}

.hero-booking {
  margin-top: clamp(28px, 5vw, 46px);
  scroll-margin-top: 100px;
}

.hero-booking .spir-widget {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: var(--body-size);
  font-weight: 600;
}

.problem-list,
.card-grid,
.reason-list,
.scope-grid,
.session-grid,
.audience-layout {
  display: grid;
  gap: 16px;
}

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

.problem-card,
.check-card,
.reason-card,
.scope-card,
.session-grid article,
.audience-card,
.price-card,
.profile-photo,
.faq-list article,
.final-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.problem-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px;
}

.problem-card p {
  margin: 0;
  color: #1c2d47;
  font-weight: 800;
}

.problem {
  padding-block: clamp(52px, 7vw, 88px);
  background:
    radial-gradient(80% 38% at 50% 0%, rgba(234, 242, 255, 0.88), rgba(255, 255, 255, 0) 64%),
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    #fbfdff;
  background-size: auto, 24px 24px, 24px 24px, auto;
}

.problem-container {
  max-width: var(--container);
}

.problem-heading {
  max-width: 940px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.problem-heading .eyebrow {
  margin-bottom: 14px;
  padding: 8px 22px 8px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #b8d7ff;
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.problem-heading .eyebrow::before {
  content: "?";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  background: linear-gradient(145deg, var(--blue), #2db7ff);
  border-radius: 50%;
  box-shadow: none;
}

.problem-heading h2 {
  max-width: 960px;
  margin-inline: auto;
  color: #06142d;
  font-size: var(--heading-size-fluid);
  line-height: 1.36;
}

.problem-heading p:not(.eyebrow) {
  max-width: 900px;
  margin: clamp(18px, 2.4vw, 24px) auto 0;
  color: #10213a;
  font-size: var(--body-size);
  font-weight: 800;
  line-height: 2;
}

.problem-visual {
  max-width: 1010px;
  margin: 0 auto;
}

.problem-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(23, 83, 176, 0.08));
}

.problem-note {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 2.3vw, 24px);
  align-items: center;
  max-width: 960px;
  margin: clamp(20px, 3vw, 30px) auto 0;
  padding: clamp(14px, 2vw, 20px) clamp(18px, 3.2vw, 34px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #a9ceff;
  border-radius: 14px;
  box-shadow:
    0 18px 42px rgba(23, 83, 176, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.problem-note::after {
  content: "?";
  position: absolute;
  right: clamp(16px, 4vw, 44px);
  color: rgba(37, 99, 235, 0.12);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
}

.problem-note-icon {
  display: grid;
  width: clamp(54px, 7vw, 78px);
  height: clamp(54px, 7vw, 78px);
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #1f8cff);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}

.problem-note-icon svg,
.problem-note-icon i[data-lucide] {
  width: 52%;
  height: 52%;
}

.problem-note p {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin: 0;
  color: #10213a;
  line-height: 1.55;
}

.problem-note strong {
  color: var(--ink);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: clamp(1.18rem, 2.5vw, 2rem);
  font-weight: 900;
}

.problem-note strong span {
  color: var(--blue);
}

.problem-note small {
  color: #213452;
  font-size: clamp(0.86rem, 1.35vw, 1.02rem);
  font-weight: 700;
}

.mini-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--blue);
  border-radius: 12px;
}

.concept-card {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(24px, 5.2vw, 62px);
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px, 22px 22px, auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 22px 56px rgba(23, 83, 176, 0.12);
}

.concept-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
}

.concept-brand .brand-mark {
  width: 54px;
  height: 54px;
  font-size: 34px;
  border-radius: 12px;
}

.concept-brand .brand-name {
  color: var(--blue);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.45rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.concept-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.concept-copy h2 {
  position: relative;
  margin: 0;
  font-size: var(--heading-size-fluid);
  line-height: 1.28;
}

.concept-copy h2 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.concept-copy h2 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.08em;
  left: 0;
  height: 0.12em;
  background: var(--blue-2);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.concept-copy p {
  max-width: 780px;
  margin: 0;
  color: #1c2d47;
  font-size: var(--body-size);
  font-weight: 800;
  line-height: 2;
}

.concept-illustration {
  margin: 0;
}

.concept-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 22px);
}

.not-grid span {
  display: inline-flex;
  min-height: clamp(64px, 9vw, 96px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--ink);
  font-size: var(--body-size);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #a9ceff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(23, 83, 176, 0.06);
}

.not-grid strong {
  color: var(--blue);
  font-size: 1em;
  line-height: 1;
}

.concept-scope {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
  background: rgba(247, 251, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.concept-scope h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: var(--body-size);
}

.concept-scope h3 span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  background: var(--blue);
  border-radius: 7px;
}

.feature-grid,
.deliverable-grid,
.tool-map,
.offer-grid {
  display: grid;
  gap: 12px;
}

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

.feature-grid span,
.deliverable-grid span,
.tool-map span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.feature-grid span {
  gap: 12px;
  min-height: clamp(72px, 8vw, 94px);
  justify-content: flex-start;
  padding: 12px;
  color: var(--ink);
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(23, 83, 176, 0.05);
}

.feature-grid svg,
.feature-grid i[data-lucide] {
  flex: 0 0 auto;
  width: clamp(28px, 4vw, 40px);
  height: clamp(28px, 4vw, 40px);
  color: var(--blue);
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-wide {
  grid-column: 1 / -1;
}

.outcome-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--blue);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
}

.outcome-path i {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--coral));
  border-radius: 999px;
}

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

.check-card {
  position: relative;
  padding: 22px 22px 22px 58px;
  color: #1c2d47;
  font-weight: 900;
}

.check-card::before {
  content: "✓";
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.reason-card h3,
.scope-card h3,
.audience-card h3 {
  margin-bottom: 12px;
}

.reason-card p,
.scope-card p,
.session-grid p,
.audience-card p,
.profile p,
.faq-list p,
.final-card p {
  color: var(--muted);
  font-weight: 600;
}

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

.reason-card {
  padding: clamp(22px, 3vw, 30px);
}

.reason-label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 10px;
  color: #fff !important;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900 !important;
  background: var(--blue);
  border-radius: 999px;
}

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

.tool-map span {
  min-height: 42px;
  font-size: 0.9rem;
}

.workflow,
.support-list,
.scope-card ul,
.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.workflow {
  counter-reset: step;
}

.workflow li,
.support-list li,
.scope-card li,
.audience-card li {
  position: relative;
  padding-left: 36px;
  color: #1c2d47;
  font-weight: 800;
}

.workflow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  background: var(--blue);
  border-radius: 50%;
}

.support-list li::before,
.scope-card li::before,
.audience-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.scope-grid {
  grid-template-columns: 1fr;
}

.scope-card {
  padding: clamp(22px, 3.4vw, 34px);
}

.scope-do {
  border-color: rgba(34, 197, 94, 0.35);
}

.scope-dont {
  border-color: rgba(255, 107, 92, 0.32);
}

.scope-dont li::before,
.audience-card-warn li::before {
  content: "×";
  color: var(--coral);
}

.roadmap-line {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 22px;
}

.roadmap-line::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 5px;
  width: 3px;
  background: linear-gradient(var(--blue), var(--green), var(--coral));
  border-radius: 999px;
}

.roadmap-line article {
  position: relative;
  padding: clamp(22px, 3.2vw, 32px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.roadmap-line article::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -27px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 50%;
}

.roadmap-line span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  color: var(--blue);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  background: var(--blue-3);
  border-radius: 999px;
}

.roadmap-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.session-grid {
  grid-template-columns: repeat(5, 1fr);
}

.session-grid article {
  padding: 22px;
}

.session-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

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

.deliverable-grid span {
  min-height: 72px;
}

.audience-layout {
  grid-template-columns: 1fr;
}

.audience-card {
  padding: clamp(22px, 3vw, 30px);
}

.audience-card:first-child {
  grid-row: auto;
}

.audience-card-warn {
  border-color: rgba(255, 107, 92, 0.36);
}

.price-card {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid rgba(37, 99, 235, 0.28);
}

.price-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 84px;
  height: 84px;
  background:
    linear-gradient(var(--blue), var(--blue)) center 50% / 70% 3px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center 50% / 3px 70% no-repeat,
    var(--blue-3);
  border-radius: 24px;
  opacity: 0.75;
  transform: rotate(8deg);
}

.offer-grid {
  grid-template-columns: repeat(2, 1fr);
}

.offer-grid span {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: #1c2d47;
  font-size: var(--body-size);
  font-weight: 800;
  background: var(--blue-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.offer-grid b {
  color: var(--blue);
  font-size: var(--body-size);
}

.price-box {
  display: grid;
  gap: 2px;
  margin: 28px 0;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1f74ff);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-box p,
.price-box span {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.price-box strong {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.price-box em {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-style: normal;
  font-weight: 900;
}

.fine-print {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 600;
}

.price-card > .cta-button {
  display: flex;
  width: min(100%, 500px);
  margin-inline: auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.profile-photo {
  padding: 14px;
  background: linear-gradient(160deg, #fff, var(--blue-3));
}

.profile-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 16px;
}

.profile-title {
  margin-top: 12px;
  color: var(--blue) !important;
  font-weight: 900 !important;
}

.profile-tags {
  margin-top: 18px;
}

blockquote {
  margin: 24px 0 0;
  padding: 22px;
  color: #1c2d47;
  font-weight: 900;
  background: #fff;
  border-left: 6px solid var(--blue);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 22px 24px;
}

.faq-list h3 {
  margin-bottom: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
}

.final-cta {
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(130deg, #fff 0%, #fff 48%, var(--blue-3) 48.2%, #d7ebff 100%);
  background-size: 28px 28px, 28px 28px, auto;
}

.final-card {
  max-width: 920px;
  padding: clamp(28px, 6vw, 68px);
  text-align: center;
}

.final-card .eyebrow,
.final-card .hero-actions,
.final-card .trust-row {
  justify-content: center;
  margin-inline: auto;
}

.final-card h2 {
  max-width: 780px;
  margin-inline: auto;
}

.final-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
}

.final-card .trust-row {
  margin-top: 24px;
}

.footer {
  padding: 36px 0;
  background: #071226;
  color: #fff;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer .brand-name {
  color: #fff;
}

.footer-legal {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer p,
.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-legal p:last-child {
  font-size: 0.86rem;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 14px clamp(18px, 4vw, 40px) calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.98));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
  visibility: hidden;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.floating-cta .button {
  width: min(100%, 560px);
  min-height: 72px;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .site-header {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-grid {
    width: calc(100% - 40px);
    max-width: var(--container);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero .mobile-brand {
    display: flex;
    width: fit-content;
    margin-bottom: 26px;
  }

  .hero-bg {
    background:
      linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
      linear-gradient(164deg, #fff 0%, #fff 63%, #e6f2ff 63.2%, #cde6ff 100%);
    background-size: 24px 24px, 24px 24px, auto;
  }

  h1 {
    font-size: var(--heading-size-fluid);
    line-height: 1.24;
    max-width: 100%;
  }

  .hero h1 span {
    display: inline-block;
    max-width: 100%;
  }

  .sp-break {
    display: block;
  }

  .mobile-break {
    display: block;
  }

  h2 {
    font-size: var(--heading-size-fluid);
    line-height: 1.36;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.82;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .final-card .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding-inline: 18px;
  }

  .button-primary,
  .button-secondary {
    min-width: 0;
  }

  .button.cta-button {
    min-height: 70px;
    padding: 10px 16px;
    gap: 10px;
  }

  .cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .cta-icon svg,
  .button .cta-icon svg {
    width: 22px;
    height: 22px;
  }

  .cta-main {
    font-size: 0.98rem;
  }

  .cta-sub {
    font-size: 0.66rem;
  }

  .hero-note {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .note-icon {
    width: 48px;
    height: 48px;
  }

  .audience-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .audience-chips span {
    min-width: 0;
    min-height: 42px;
    padding-inline: 8px;
    text-align: center;
  }

  .hero-visual {
    min-height: clamp(500px, 82vw, 540px);
    margin-top: 10px;
    padding: 16px 14px 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(234, 242, 255, 0.76));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .hero-visual::before {
    inset: 16% 0 0 8%;
    border-radius: 42% 0 0 18%;
    transform: skewX(-6deg);
  }

  .hero-visual img {
    width: min(100%, 410px);
    height: 360px;
    margin-inline: auto;
    object-fit: cover;
    object-position: top center;
  }

  .speech-bubble {
    top: 2%;
    right: 4px;
    max-width: 176px;
    padding: 14px 16px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .floating-points {
    top: 42%;
    right: -20px;
    width: min(56vw, 220px);
    gap: 9px;
  }

  .floating-points div {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .floating-points svg {
    width: 28px;
    height: 28px;
  }

  .info-card {
    bottom: 0;
    width: calc(100% - 40px);
    max-width: 600px;
    padding: 8px;
    font-size: 0.84rem;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .problem {
    padding-block: 48px 58px;
    background-size: auto, 20px 20px, 20px 20px, auto;
  }

  .problem-container {
    width: calc(100% - 28px);
  }

  .problem-heading {
    margin-bottom: 14px;
  }

  .problem-heading .eyebrow {
    margin-bottom: 12px;
    padding: 7px 16px 7px 10px;
    font-size: clamp(0.86rem, 3.6vw, 1rem);
  }

  .problem-heading .eyebrow::before {
    width: 24px;
    height: 24px;
    font-size: 0.95rem;
  }

  .problem-heading h2 {
    font-size: var(--heading-size-fluid);
    line-height: 1.4;
  }

  .problem-heading p:not(.eyebrow) {
    margin-top: 14px;
    font-size: clamp(0.9rem, 3.4vw, 1rem);
    line-height: 1.85;
  }

  .problem-visual {
    width: min(100%, 560px);
  }

  .problem-note {
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin-top: 14px;
    padding: 9px 12px;
    border-radius: 12px;
  }

  .problem-note-icon {
    width: 44px;
    height: 44px;
  }

  .problem-note::after {
    right: 12px;
    font-size: 3.2rem;
  }

  .problem-note strong {
    font-size: clamp(1.02rem, 4.5vw, 1.35rem);
    line-height: 1.42;
  }

  .problem-note small {
    font-size: clamp(0.7rem, 2.8vw, 0.84rem);
    line-height: 1.55;
  }

  .concept-card {
    width: min(100%, 720px);
    padding: 22px;
    border-radius: 20px;
  }

  .concept-brand {
    gap: 10px;
  }

  .concept-brand .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 27px;
    border-radius: 10px;
  }

  .concept-copy h2 {
    font-size: var(--heading-size-fluid);
    line-height: 1.36;
  }

  .concept-copy p {
    font-size: clamp(0.95rem, 3.45vw, 1.08rem);
    line-height: 1.9;
  }

  .concept-scope {
    padding: 14px;
    border-radius: 16px;
  }

  .concept-scope h3 {
    align-items: flex-start;
    font-size: clamp(0.98rem, 3.45vw, 1.12rem);
    line-height: 1.5;
  }

  .problem-list,
  .card-grid,
  .reason-list,
  .session-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-grid span {
    min-height: 96px;
    padding: 12px 10px;
    font-size: var(--body-size);
    line-height: 1.45;
  }

  .offer-grid b {
    font-size: var(--body-size);
  }

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

  .deliverable-grid span {
    min-height: 64px;
    padding: 10px 8px;
    font-size: clamp(0.78rem, 2.9vw, 0.96rem);
    line-height: 1.45;
  }

  .not-grid,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .not-grid span {
    gap: 4px;
    min-height: 58px;
    padding: 12px 6px;
    font-size: clamp(0.82rem, 3.2vw, 1rem);
    border-radius: 10px;
  }

  .feature-grid span {
    flex-direction: column;
    gap: 8px;
    min-height: 92px;
    justify-content: center;
    padding: 10px 5px;
    font-size: clamp(0.68rem, 2.75vw, 0.86rem);
    line-height: 1.35;
  }

  .feature-grid svg,
  .feature-grid i[data-lucide] {
    width: 28px;
    height: 28px;
  }

  .feature-wide {
    grid-column: 1 / -1;
  }

  .problem-card {
    padding: 18px;
  }

  .tool-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-photo img {
    height: 360px;
  }

  .price-card::after {
    display: none;
  }

  .price-box {
    padding: 22px;
  }

  .final-card {
    text-align: left;
  }

  .final-card .eyebrow,
  .final-card .hero-actions,
  .final-card .trust-row,
  .final-card h2,
  .final-card p:not(.eyebrow) {
    margin-inline: 0;
  }

  .final-card .eyebrow,
  .final-card .hero-actions,
  .final-card .trust-row {
    justify-content: flex-start;
  }

  .profile-tags span,
  .pill-grid span,
  .tag-list span,
  .trust-row span {
    min-height: 34px;
    font-size: 0.9rem;
  }

  .footer .container {
    display: grid;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
