:root {
  --navy: #06306b;
  --navy-2: #082859;
  --blue: #0d6be8;
  --blue-2: #075bd0;
  --light-blue: #eaf4ff;
  --pale-blue: #f7fbff;
  --orange: #ff9f1a;
  --orange-2: #ffb64d;
  --ink: #10233f;
  --muted: #6b7280;
  --line: rgba(13, 107, 232, 0.14);
  --line-strong: rgba(6, 48, 107, 0.18);
  --surface: #ffffff;
  --soft-surface: rgba(255, 255, 255, 0.86);
  --shadow-sm: 0 10px 24px rgba(6, 48, 107, 0.06);
  --shadow-md: 0 18px 48px rgba(6, 48, 107, 0.09);
  --shadow-lg: 0 34px 90px rgba(6, 48, 107, 0.16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(13, 107, 232, 0.08), transparent 28rem),
    radial-gradient(circle at 94% 10%, rgba(255, 159, 26, 0.08), transparent 24rem),
    #ffffff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(rgba(6, 48, 107, 0.09) 1px, transparent 1px),
    radial-gradient(rgba(255, 159, 26, 0.08) 1px, transparent 1px);
  background-position: 0 0, 13px 13px;
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), transparent 58%);
}

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

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

.no-break {
  white-space: nowrap;
}

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

button {
  cursor: pointer;
}

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

.section-band {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: -999px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  left: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(6, 48, 107, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 40px rgba(6, 48, 107, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 132px;
  display: inline-flex;
  align-items: center;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: rgba(16, 35, 63, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--blue);
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.header-cta {
  min-height: 44px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 159, 26, 0.26);
}

.button {
  padding: 0 28px;
}

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

.header-cta:active,
.button:active,
.menu-button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 20px 42px rgba(13, 107, 232, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #1978f1, #0654bf);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 48, 107, 0.14);
  box-shadow: 0 14px 28px rgba(6, 48, 107, 0.06);
  backdrop-filter: blur(10px);
}

.button-orange {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(255, 159, 26, 0.28);
}

.button-orange:hover {
  background: var(--orange-2);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(6, 48, 107, 0.12);
  border-radius: 16px;
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0 45%, rgba(234, 244, 255, 0.78) 45% 100%),
    radial-gradient(circle at 82% 18%, rgba(255, 159, 26, 0.22), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(13, 107, 232, 0.2), transparent 34%);
}

.hero::before {
  content: "ESRAKU";
  position: absolute;
  left: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  color: rgba(6, 48, 107, 0.045);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: clamp(4.8rem, 13vw, 12rem);
  font-weight: 800;
  line-height: 0.78;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 116px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: 210px;
  height: 210px;
  border: 1px solid rgba(13, 107, 232, 0.18);
  border-radius: 42% 58% 48% 52%;
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  padding: 42px 0 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 1.4vw, 22px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 92px;
  width: 6px;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

h1,
.section-heading h2,
.solution-copy h2,
.preview-copy h2,
.trust-copy h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(3rem, 4.7vw, 4.65rem);
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(16, 35, 63, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 600;
}

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

.hero-badges {
  max-width: 540px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span,
.cta-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(16, 35, 63, 0.76);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(6, 48, 107, 0.045);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  z-index: 2;
}

.dashboard-mock,
.phone-mock,
.solution-dashboard,
.admin-preview-shell {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #ffffff;
}

.dashboard-mock {
  position: absolute;
  inset: 24px 14px 34px 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 88px rgba(6, 48, 107, 0.19);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.mock-window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(13, 107, 232, 0.1);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.mock-window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d5deec;
}

.mock-window-bar span:first-child {
  background: var(--orange);
}

.mock-window-bar strong {
  margin-left: 6px;
  color: rgba(16, 35, 63, 0.52);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.mock-layout {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: calc(100% - 48px);
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 28px;
  background: linear-gradient(180deg, #07306a, #061d3f);
}

.mock-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.mock-sidebar span.is-active {
  background: var(--orange);
}

.mock-main {
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(13, 107, 232, 0.065) 1px, transparent 1px),
    linear-gradient(rgba(13, 107, 232, 0.055) 1px, transparent 1px),
    #ffffff;
  background-size: 32px 32px;
}

.mock-head,
.mock-metrics,
.solution-dashboard-toolbar,
.solution-dashboard-kpis,
.preview-screen-header,
.admin-kpi-grid {
  display: grid;
  gap: 16px;
}

.mock-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 22px;
}

.mock-head small,
.mock-metrics small,
.solution-dashboard-kpis small,
.admin-kpi-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mock-head strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.mock-head span,
.preview-screen-header span,
.solution-dashboard-toolbar small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--light-blue);
  font-size: 12px;
  font-weight: 900;
}

.mock-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.mock-metrics div,
.admin-kpi-grid div,
.admin-chart-card,
.admin-rank-card,
.preview-bar {
  border: 1px solid rgba(13, 107, 232, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.mock-metrics div {
  padding: 18px;
}

.mock-metrics strong {
  display: block;
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.mock-timeline {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.mock-timeline div {
  position: relative;
  min-height: 72px;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.1);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
}

.mock-timeline div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 107, 232, 0.08);
}

.mock-timeline span {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 1;
  width: var(--w);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.mock-timeline b {
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.phone-mock {
  position: absolute;
  right: -24px;
  bottom: 30px;
  width: 178px;
  min-height: 310px;
  border: 8px solid var(--navy);
  border-radius: 34px;
  padding: 24px 14px;
  box-shadow: 0 30px 64px rgba(6, 48, 107, 0.22);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: var(--navy);
  transform: translateX(-50%);
}

.phone-card {
  display: grid;
  gap: 12px;
  padding: 18px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--light-blue), #ffffff);
}

.phone-card small {
  color: var(--muted);
  font-weight: 800;
}

.phone-card strong {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}

.phone-card span {
  height: 42px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.section-heading {
  position: relative;
  max-width: 850px;
  margin-bottom: clamp(42px, 5.8vw, 72px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.section-heading h2,
.solution-copy h2,
.preview-copy h2,
.trust-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.05rem, 4.2vw, 3.85rem);
}

.section-heading p,
.solution-copy p,
.preview-copy p,
.trust-copy p {
  max-width: 68ch;
  margin: 18px 0 0;
  color: rgba(16, 35, 63, 0.68);
  font-size: 1.02rem;
  font-weight: 600;
}

.problem {
  background:
    radial-gradient(circle at 12% 12%, rgba(13, 107, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #f5faff 0%, #ffffff 92%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.problem-card {
  position: relative;
  min-height: 264px;
  overflow: hidden;
  padding: 26px 28px 28px;
  background: transparent;
  transition: background 0.24s ease;
}

.problem-card + .problem-card {
  border-left: 1px solid rgba(13, 107, 232, 0.14);
}

.usecase-card::after {
  content: "";
  position: absolute;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.07);
  pointer-events: none;
}

.problem-card:hover {
  background: linear-gradient(180deg, rgba(234, 244, 255, 0.72), rgba(255, 255, 255, 0));
}

.problem-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  height: 100%;
}

.problem-card-body::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.055);
  pointer-events: none;
}

.problem-card-image {
  position: relative;
  z-index: 1;
  width: min(128px, 72%);
  justify-self: center;
  margin: 18px 0 16px;
  filter: drop-shadow(0 16px 18px rgba(13, 107, 232, 0.12));
}

.problem-label {
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.problem-card h3,
.feature-card h3,
.usecase-card h3,
.plan-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.45;
}

.problem-card p,
.feature-card p,
.usecase-card p,
.plan-card p,
.trust-item p {
  margin: 10px 0 0;
  color: rgba(16, 35, 63, 0.66);
  font-size: 0.95rem;
  font-weight: 600;
}

.solution {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 159, 26, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff, #f5faff 42%, #ffffff);
}

.solution-grid,
.preview-grid,
.trust-grid {
  display: grid;
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.solution-grid {
  grid-template-columns: minmax(280px, 0.44fr) minmax(640px, 0.56fr);
}

.solution-copy {
  align-self: start;
  padding-top: 26px;
}

.solution-map {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 148px 1fr 148px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(13, 107, 232, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(13, 107, 232, 0.035) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(13, 107, 232, 0.12), transparent 45%),
    #ffffff;
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: var(--shadow-sm);
}

.solution-map::before,
.solution-map::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22%;
  border-top: 2px dashed rgba(13, 107, 232, 0.24);
}

.solution-map::before {
  left: 16%;
}

.solution-map::after {
  right: 16%;
}

.solution-nodes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.solution-node {
  position: relative;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.solution-node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 107, 232, 0.38), transparent);
}

.solution-nodes-left .solution-node::after {
  right: -34px;
}

.solution-nodes-right .solution-node::after {
  left: -34px;
  transform: rotate(180deg);
}

.solution-node b {
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
}

.solution-dashboard-card {
  position: relative;
  z-index: 3;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(6, 48, 107, 0.18);
}

.solution-dashboard {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
}

.solution-dashboard aside,
.admin-preview-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #07306a, #061d3f);
}

.solution-dashboard aside img,
.admin-preview-sidebar img {
  width: 96px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
}

.solution-dashboard aside span,
.admin-preview-sidebar span {
  display: flex;
  min-height: 34px;
  align-items: center;
  border-radius: 12px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.solution-dashboard aside .is-active,
.admin-preview-sidebar .is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.solution-dashboard-main {
  padding: 24px;
  background: #ffffff;
}

.solution-dashboard-toolbar {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.solution-dashboard-toolbar strong {
  font-size: 1.12rem;
}

.solution-dashboard-kpis,
.admin-kpi-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.solution-dashboard-kpis div,
.admin-kpi-grid div {
  padding: 16px;
}

.solution-dashboard-kpis b,
.admin-kpi-grid b {
  display: block;
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.solution-dashboard-graph {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--pale-blue), #ffffff);
}

.solution-dashboard-graph span,
.preview-chart span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--blue), rgba(13, 107, 232, 0.28));
}

.features {
  background: #ffffff;
}

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

.feature-card {
  display: grid;
  grid-column: span 2;
  grid-template-rows: 138px auto 1fr;
  min-height: 350px;
  padding: 28px;
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(13, 107, 232, 0.08), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 3;
  grid-template-columns: 170px 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  min-height: 250px;
}

.feature-card:nth-child(1) .feature-card-image,
.feature-card:nth-child(4) .feature-card-image {
  grid-row: span 2;
}

.feature-card:hover,
.usecase-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(6, 48, 107, 0.12);
}

.feature-card-image {
  width: min(138px, 100%);
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 18px 22px rgba(13, 107, 232, 0.12));
}

.feature-card h3 {
  margin-top: 16px;
}

.feature-card:nth-child(1) h3,
.feature-card:nth-child(4) h3 {
  margin-top: 0;
}

.before-after {
  background: linear-gradient(180deg, #ffffff, #f1f8ff);
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.compare-grid::before {
  content: "→";
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(255, 159, 26, 0.28);
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.compare-panel {
  min-height: 390px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.compare-panel.before {
  grid-column: 1;
  grid-row: 1;
  color: var(--ink);
  background:
    repeating-linear-gradient(-45deg, rgba(107, 114, 128, 0.045) 0 8px, transparent 8px 18px),
    #f4f6f8;
  border: 1px solid rgba(107, 114, 128, 0.16);
}

.compare-panel.after {
  grid-column: 3;
  grid-row: 1;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 159, 26, 0.26), transparent 26%),
    linear-gradient(140deg, #06306b 0%, #0d6be8 100%);
}

.compare-panel h3 {
  margin: 0 0 22px;
  font-size: 1.45rem;
}

.compare-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.compare-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(107, 114, 128, 0.35);
}

.compare-panel.after li::before {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 159, 26, 0.16);
}

.preview {
  background:
    radial-gradient(circle at 20% 10%, rgba(13, 107, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #f5faff, #eef7ff);
}

.preview-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(720px, 1.28fr);
  align-items: start;
}

.preview-copy {
  position: sticky;
  top: 110px;
}

.preview-tabs {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.preview-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 15px;
  padding: 0 16px;
  color: rgba(16, 35, 63, 0.74);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(6, 48, 107, 0.04);
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.preview-tab::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.22);
}

.preview-tab:hover {
  transform: translateX(4px);
}

.preview-tab.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), #074c9f);
  box-shadow: 0 18px 34px rgba(6, 48, 107, 0.16);
}

.preview-tab.is-active::after {
  background: var(--orange);
}

.preview-screen {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.admin-preview-shell {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 650px;
  overflow: hidden;
  border-radius: 30px;
}

.admin-preview-main {
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(13, 107, 232, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(13, 107, 232, 0.035) 1px, transparent 1px),
    #f9fcff;
  background-size: 34px 34px;
}

.admin-command-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 107, 232, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.admin-command-bar strong {
  font-size: 13px;
}

.admin-command-bar span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--blue);
  background: var(--light-blue);
  font-size: 11px;
  font-weight: 900;
}

.preview-screen-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
}

.preview-screen-header h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.3;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 16px;
  margin-top: 16px;
}

.admin-chart-card,
.admin-rank-card {
  padding: 18px;
}

.admin-chart-card strong,
.admin-rank-card strong {
  display: block;
  margin-bottom: 14px;
}

.preview-chart {
  height: 172px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, var(--pale-blue));
}

.admin-rank-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-rank-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(16, 35, 63, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.admin-rank-card li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--light-blue);
  font-family: "Outfit", sans-serif;
}

.preview-bars {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.preview-bar {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.preview-bar i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.preview-bar strong,
.preview-bar small {
  display: block;
}

.preview-bar strong {
  font-size: 13px;
}

.preview-bar small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.preview-bar b {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
}

.use-cases {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 159, 26, 0.12), transparent 20%),
    #ffffff;
}

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

.usecase-card {
  position: relative;
  display: grid;
  grid-column: span 2;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  min-height: 210px;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.usecase-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.usecase-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.usecase-card::after {
  right: -44px;
  bottom: -44px;
}

.usecase-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  color: var(--blue);
  background: var(--light-blue);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.usecase-card-image {
  position: relative;
  z-index: 1;
  width: min(108px, 100%);
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 16px 20px rgba(13, 107, 232, 0.12));
}

.usecase-card h3,
.usecase-card p {
  position: relative;
  z-index: 1;
}

.trust {
  background:
    linear-gradient(90deg, rgba(13, 107, 232, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(13, 107, 232, 0.05) 1px, transparent 1px),
    var(--light-blue);
  background-size: 44px 44px;
}

.trust-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.18fr);
}

.trust-copy {
  padding: 34px;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.trust-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  font-size: 1.02rem;
}

.pricing {
  background: #ffffff;
}

.pricing-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.pricing-top-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(72px, 9vw, 128px) 0 clamp(58px, 7vw, 96px);
  background:
    radial-gradient(circle at 88% 22%, rgba(13, 107, 232, 0.09), transparent 30%),
    linear-gradient(115deg, #ffffff 0 56%, #eff6ff 56% 100%);
}

.pricing-top-hero::before {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -26vw;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.06);
}

.pricing-top-hero::after {
  content: "";
  position: absolute;
  right: 5vw;
  bottom: 3vw;
  width: 230px;
  height: 150px;
  opacity: 0.34;
  background-image: radial-gradient(rgba(13, 107, 232, 0.34) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

.pricing-top-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.78fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}

.pricing-top-hero-copy {
  max-width: 850px;
}

.pricing-top-hero-copy .eyebrow {
  position: relative;
  margin-bottom: 42px;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.pricing-top-hero-copy .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.pricing-top-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.2rem, 5.7vw, 6.55rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.pricing-top-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(10px, 1.1vw, 18px);
  margin-top: clamp(28px, 3.8vw, 44px);
}

.pricing-top-price-label {
  display: inline-grid;
  min-width: 86px;
  min-height: 58px;
  place-items: center;
  border: 2px solid rgba(13, 107, 232, 0.62);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 900;
}

.pricing-top-price strong {
  color: var(--blue);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: clamp(4.2rem, 8.5vw, 8.7rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0;
}

.pricing-top-price small {
  margin-left: 4px;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 3.15rem);
  font-weight: 900;
}

.pricing-top-tax {
  color: var(--blue);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 900;
}

.pricing-top-lead {
  margin: 18px 0 0;
  color: #35445b;
  font-size: clamp(1.35rem, 2.35vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
}

.pricing-top-benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 650px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  padding: 0 0 0 154px;
  color: #2f3e55;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  font-weight: 900;
  line-height: 1.45;
}

.pricing-top-benefit::before,
.pricing-top-benefit::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgba(6, 48, 107, 0.14);
}

.pricing-top-benefit::before {
  left: 0;
  width: 124px;
}

.pricing-top-benefit::after {
  right: -154px;
  width: 124px;
}

.pricing-top-benefit strong {
  color: var(--orange);
  font-size: 1.7em;
  line-height: 1;
}

.pricing-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(24px, 3.4vw, 42px);
}

.pricing-top-actions .button {
  min-width: min(260px, 100%);
  min-height: 62px;
}

.pricing-included-panel {
  position: relative;
  padding: clamp(26px, 3.6vw, 44px);
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(7, 31, 69, 0.1);
  backdrop-filter: blur(12px);
}

.pricing-included-panel h2 {
  position: relative;
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 900;
  text-align: center;
}

.pricing-included-panel h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
}

.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(6, 48, 107, 0.12);
  border-left: 1px solid rgba(6, 48, 107, 0.12);
}

.pricing-included-grid article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 18px 22px;
  border-right: 1px solid rgba(6, 48, 107, 0.12);
  border-bottom: 1px solid rgba(6, 48, 107, 0.12);
}

.pricing-included-grid span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
}

.pricing-included-grid img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.pricing-included-grid b {
  color: var(--navy);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  font-weight: 900;
  line-height: 1.35;
}

.pricing-included-panel p {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  color: rgba(16, 35, 63, 0.68);
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.plan-card.is-recommended {
  transform: translateY(-18px);
  border-color: rgba(255, 159, 26, 0.42);
  box-shadow: 0 30px 72px rgba(255, 159, 26, 0.17), 0 20px 60px rgba(6, 48, 107, 0.1);
}

.recommend-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.plan-note {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(16, 35, 63, 0.72);
  font-weight: 800;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
}

.plan-card .button {
  margin-top: auto;
}

.pricing-campaign {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 5.4vw, 88px);
  margin-bottom: 56px;
  padding: clamp(48px, 6vw, 82px) clamp(34px, 6.4vw, 76px);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(13, 107, 232, 0.1);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 159, 26, 0.22), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(13, 107, 232, 0.13), transparent 30%),
    linear-gradient(115deg, #ffffff 0 63%, #f7fbff 63% 100%);
  box-shadow: 0 28px 80px rgba(13, 107, 232, 0.09);
  text-align: left;
}

.pricing-campaign::before,
.pricing-campaign::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pricing-campaign::before {
  left: -80px;
  bottom: -98px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.06);
}

.pricing-campaign::after {
  right: -86px;
  top: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 2px, transparent 2px) 0 0 / 18px 18px,
    rgba(255, 159, 26, 0.1);
}

.campaign-copy,
.campaign-price-card {
  position: relative;
  z-index: 1;
}

.campaign-copy {
  display: grid;
  justify-items: start;
  gap: clamp(20px, 2.6vw, 30px);
  min-width: 0;
}

.campaign-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 26px rgba(255, 145, 0, 0.22);
}

.campaign-copy h2 {
  margin: 0;
  color: var(--navy);
  max-width: 680px;
  font-size: clamp(1.95rem, 2.75vw, 3.02rem);
  font-weight: 900;
  line-height: 1.52;
  letter-spacing: 0;
}

.campaign-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.campaign-rule {
  width: min(100%, 560px);
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, var(--blue), rgba(13, 107, 232, 0.08));
}

.campaign-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.campaign-discount {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  max-width: 100%;
  min-width: 0;
}

.campaign-discount > span {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
}

.campaign-discount strong {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  gap: clamp(8px, 1.1vw, 14px);
  max-width: min(100%, 438px);
  min-height: clamp(64px, 6.2vw, 82px);
  padding: 0 clamp(18px, 2.4vw, 30px);
  border-radius: 999px;
  color: var(--orange);
  background:
    linear-gradient(180deg, transparent 66%, rgba(255, 216, 76, 0.36) 66%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 64px rgba(13, 107, 232, 0.12);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: clamp(2.25rem, 3.35vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.campaign-discount img {
  display: block;
  flex: 0 0 auto;
  width: clamp(56px, 4.8vw, 68px);
  height: clamp(56px, 4.8vw, 68px);
  object-fit: contain;
}

.campaign-price-card {
  display: grid;
  justify-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  justify-self: end;
  width: 100%;
  max-width: 500px;
  min-height: clamp(292px, 25vw, 360px);
  padding: clamp(32px, 3.4vw, 44px) clamp(22px, 2.8vw, 36px);
  border: 1px solid rgba(6, 48, 107, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 74px rgba(6, 48, 107, 0.12);
}

.campaign-price-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 28px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 900;
}

.campaign-regular {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 22px);
  margin-top: clamp(8px, 1vw, 16px);
  color: var(--navy);
  font-weight: 900;
}

.campaign-regular span {
  font-size: clamp(1.18rem, 2vw, 1.7rem);
}

.campaign-regular strong {
  position: relative;
  color: rgba(16, 35, 63, 0.42);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
}

.campaign-regular strong::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 52%;
  height: 6px;
  border-radius: 999px;
  background: #ff3b30;
  transform: rotate(-7deg);
}

.campaign-arrow {
  display: grid;
  gap: 0;
  opacity: 0.78;
}

.campaign-arrow span {
  width: 26px;
  height: 26px;
  border-right: 7px solid rgba(13, 107, 232, 0.28);
  border-bottom: 7px solid rgba(13, 107, 232, 0.28);
  transform: rotate(45deg);
}

.campaign-arrow span + span {
  margin-top: -13px;
}

.campaign-current {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--blue);
}

.campaign-current-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 100%;
  color: var(--blue);
  line-height: 0.9;
  white-space: nowrap;
}

.campaign-current-main strong {
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-size: clamp(4.45rem, 5.45vw, 6.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.campaign-current-main small {
  margin-left: 6px;
  padding-bottom: 0.16em;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  font-weight: 900;
  line-height: 1;
}

.campaign-current span {
  color: var(--navy);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  font-weight: 900;
}

.pricing-plan-scroll {
  overflow-x: auto;
  padding: 48px 4px 8px;
}

.pricing-plan-board {
  display: grid;
  grid-template-columns: 210px repeat(3, minmax(245px, 1fr));
  align-items: end;
  gap: 14px;
  min-width: 1080px;
}

.pricing-plan-labels {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 18px 0 0 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(6, 48, 107, 0.06);
}

.pricing-plan-labels > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
  padding: 24px 18px;
  border-bottom: 1px solid rgba(13, 107, 232, 0.12);
}

.pricing-plan-labels > div:last-child {
  border-bottom: 0;
}

.pricing-plan-labels b,
.plan-recommend b {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.55;
}

.pricing-plan-labels small {
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.92rem;
  font-weight: 900;
}

.pricing-plan-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(6, 48, 107, 0.09);
}

.pricing-plan-card h3 {
  display: grid;
  min-height: 72px;
  place-items: center;
  margin: 0;
  border-radius: 14px 14px 0 0;
  color: #ffffff;
  background: linear-gradient(135deg, #061b42, #0043bb);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
}

.plan-card-body {
  display: grid;
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  min-height: 360px;
  padding: 0 22px;
}

.plan-price-row,
.plan-recommend {
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px dashed rgba(13, 107, 232, 0.2);
}

.plan-card-body > div:last-child {
  border-bottom: 0;
}

.plan-price-row strong {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.plan-price-row small {
  margin-left: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.45em;
}

.plan-price-row span {
  margin-top: 8px;
  color: rgba(16, 35, 63, 0.62);
  font-size: 1rem;
  font-weight: 900;
}

.plan-price-row em {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 0 22px;
  border-radius: 10px;
  color: var(--blue);
  background: #eaf3ff;
  font-style: normal;
  font-size: 1.08rem;
  font-weight: 900;
}

.plan-recommend {
  grid-template-columns: 86px 1fr;
  justify-items: start;
  gap: 12px;
  text-align: left;
}

.pricing-plan-card.is-best {
  border-color: var(--orange);
  box-shadow: 0 26px 60px rgba(255, 145, 0, 0.18);
}

.pricing-plan-card.is-best h3 {
  background: linear-gradient(135deg, #ffb21b, #ff7900);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.pricing-plan-card.is-best .plan-price-row strong,
.pricing-plan-card.is-best .plan-price-row em {
  color: #f26a00;
}

.pricing-plan-card.is-best .plan-price-row em {
  background: rgba(255, 145, 0, 0.12);
}

.plan-best-ribbon {
  position: absolute;
  right: 28px;
  top: -42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px 8px 0 0;
  color: #ffffff;
  background: linear-gradient(135deg, #ffb21b, #ff7900);
  box-shadow: 0 12px 26px rgba(255, 145, 0, 0.22);
  font-size: 1.08rem;
  font-weight: 900;
}

.plan-best-ribbon::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 68% 55%, 80% 91%, 50% 70%, 20% 91%, 32% 55%, 2% 35%, 38% 34%);
}

.plan-monthly-best {
  position: relative;
}

.plan-monthly-best::after {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  right: 22px;
  top: 50%;
  background: #ffc928;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  transform: translateY(-50%) rotate(8deg);
}

.plan-icon {
  display: inline-grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--blue);
}

.pricing-plan-card.is-best .plan-icon {
  color: #f26a00;
  background: rgba(255, 145, 0, 0.13);
}

.plan-icon.plan-icon-image {
  width: 82px;
  height: 82px;
  background: transparent;
}

.pricing-plan-card.is-best .plan-icon.plan-icon-image {
  background: transparent;
}

.plan-icon.plan-icon-image::before,
.plan-icon.plan-icon-image::after {
  display: none;
}

.plan-icon.plan-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-icon::before,
.plan-icon::after {
  content: "";
  position: absolute;
}

.plan-icon.wallet::before {
  width: 27px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.plan-icon.wallet::after {
  right: 16px;
  top: 28px;
  width: 8px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #edf5ff;
}

.plan-icon.tag::before {
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 5px 5px 5px 10px;
  transform: rotate(45deg);
}

.plan-icon.tag::after {
  top: 21px;
  left: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.plan-icon.check::before {
  width: 31px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.plan-icon.check::after {
  width: 15px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.plan-icon.shop::before {
  width: 28px;
  height: 18px;
  bottom: 17px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.plan-icon.shop::after {
  top: 17px;
  width: 32px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 7px 7px 3px 3px;
}

.plan-icon.calendar::before {
  width: 30px;
  height: 27px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.plan-icon.calendar::after {
  top: 25px;
  width: 24px;
  height: 3px;
  background: currentColor;
}

.plan-icon.medal::before {
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.plan-icon.medal::after {
  bottom: 13px;
  width: 18px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(22% 0, 50% 35%, 78% 0, 100% 100%, 50% 75%, 0 100%);
}

.pricing-plan-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(760px, 100%);
  min-height: 54px;
  margin: 34px auto 0;
  padding: 10px 24px;
  border-radius: 16px;
  color: var(--navy);
  background: #edf5ff;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.pricing-plan-note span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}


.pricing-table-wrap,
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.pricing-plan-table,
.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 24px;
  background: #ffffff;
}

.pricing-plan-table th,
.pricing-plan-table td,
.comparison-table th,
.comparison-table td {
  padding: 22px 18px;
  border-right: 1px solid rgba(13, 107, 232, 0.1);
  border-bottom: 1px solid rgba(13, 107, 232, 0.1);
  text-align: center;
  vertical-align: middle;
}

.pricing-plan-table th:first-child,
.comparison-table th:first-child {
  text-align: left;
  color: var(--navy);
}

.pricing-plan-table thead th,
.comparison-table thead th {
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.pricing-plan-table thead th:nth-child(4),
.comparison-table thead th:nth-child(5) {
  background: linear-gradient(135deg, var(--orange), #ff7a00);
}

.pricing-plan-table tbody th,
.comparison-table tbody th {
  background: #f6faff;
  font-weight: 900;
}

.pricing-plan-table tr:last-child th,
.pricing-plan-table tr:last-child td,
.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.pricing-plan-table th:last-child,
.pricing-plan-table td:last-child,
.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.pricing-plan-table td strong {
  display: block;
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
}

.pricing-plan-table td span {
  display: block;
  margin-top: 5px;
  color: rgba(16, 35, 63, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
}

.comparison-table td {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.comparison-table .is-strong {
  color: #9a4d00;
  background: linear-gradient(180deg, rgba(255, 159, 26, 0.2), rgba(255, 245, 226, 0.94));
  box-shadow: inset 4px 0 0 rgba(255, 159, 26, 0.62);
}

.comparison-table .price-row td {
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-note {
  margin: 18px 0 0;
  color: rgba(16, 35, 63, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

.pricing-comparison-section {
  padding-top: clamp(64px, 8vw, 112px);
  background: #ffffff;
}

.pricing-compare-heading,
.pricing-faq-heading {
  margin: 0 0 clamp(26px, 4vw, 42px);
  text-align: center;
}

.pricing-compare-heading h2,
.pricing-faq-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
}

.pricing-compare-wrap {
  overflow-x: auto;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(18, 73, 144, 0.09);
}

.pricing-compare-table {
  width: 100%;
  min-width: 940px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--navy);
  background: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 14px 18px;
  border-right: 1px solid rgba(13, 107, 232, 0.15);
  border-bottom: 1px solid rgba(13, 107, 232, 0.15);
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
}

.pricing-compare-table th:first-child {
  width: 190px;
  text-align: left;
  background: #f7fbff;
  font-weight: 900;
}

.pricing-compare-table thead th {
  color: var(--navy);
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  font-weight: 900;
}

.pricing-compare-table thead th.is-esraku {
  color: #ffffff;
  background: linear-gradient(135deg, #075ad9, #0d6be8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.pricing-compare-table td {
  color: rgba(16, 35, 63, 0.82);
}

.pricing-compare-table td.is-esraku {
  color: #075ad9;
  background: linear-gradient(180deg, rgba(13, 107, 232, 0.09), rgba(237, 246, 255, 0.82));
  font-size: 1.18rem;
  font-weight: 900;
}

.pricing-compare-table tr:last-child th,
.pricing-compare-table tr:last-child td {
  border-bottom: 0;
}

.pricing-compare-table th:last-child,
.pricing-compare-table td:last-child {
  border-right: 0;
}

.pricing-compare-table .price-row td {
  font-size: 0.98rem;
}

.pricing-compare-table .price-row td.is-esraku {
  color: var(--blue);
  font-size: 1rem;
}

.pricing-compare-table .price-row strong,
.pricing-compare-table .price-row small {
  display: block;
}

.pricing-compare-table .price-row strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.pricing-compare-table .price-row small {
  margin-top: 2px;
  color: rgba(13, 107, 232, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-compare-note {
  margin: 14px 4px 0;
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.pricing-faq-section {
  padding-top: clamp(34px, 5vw, 72px);
  background: #ffffff;
}

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

.pricing-faq-item {
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 73, 144, 0.08);
}

.pricing-faq-question {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 10px 18px;
  border: 0;
  color: var(--navy);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.pricing-faq-question span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-faq-question b {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.5;
}

.pricing-faq-question i {
  justify-self: end;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-135deg);
  transition: transform 0.2s ease;
}

.pricing-faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.pricing-faq-answer {
  padding: 0 18px 18px 60px;
  color: rgba(16, 35, 63, 0.76);
  font-weight: 700;
  line-height: 1.8;
}

.pricing-faq-answer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .pricing-compare-wrap {
    margin-right: -18px;
    border-radius: 16px 0 0 16px;
  }

  .pricing-compare-table {
    min-width: 860px;
  }
}

@media (max-width: 760px) {
  .pricing-comparison-section {
    padding-top: 48px;
  }

  .pricing-compare-wrap {
    margin-right: -14px;
  }

  .pricing-compare-table {
    min-width: 780px;
    font-size: 0.9rem;
  }

  .pricing-compare-table th,
  .pricing-compare-table td {
    padding: 12px 14px;
  }

  .pricing-compare-table th:first-child {
    width: 150px;
  }

  .pricing-compare-note {
    text-align: left;
  }

  .pricing-faq-section {
    padding-top: 36px;
  }

  .pricing-faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-faq-question {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 10px 14px;
  }

  .pricing-faq-answer {
    padding: 0 14px 16px 52px;
  }
}

.pricing-final-cta {
  padding-top: 0;
}

.pricing-cta-card {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 159, 26, 0.34), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-lg);
}

.pricing-cta-card .eyebrow,
.pricing-cta-card h2,
.pricing-cta-card p {
  color: #ffffff;
}

.pricing-cta-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
}

.pricing-cta-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 159, 26, 0.3), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(13, 107, 232, 0.42), transparent 28%),
    linear-gradient(135deg, #062b60 0%, #0d6be8 100%);
  box-shadow: 0 34px 86px rgba(6, 48, 107, 0.22);
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.cta-panel h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.cta-panel p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.cta-points {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-points span {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.cta-panel > .hero-actions {
  position: relative;
  z-index: 2;
}

.cta-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-mini-dashboard {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: -28px;
  width: min(330px, 36vw);
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(6, 25, 56, 0.28);
  backdrop-filter: blur(14px);
  transform: rotate(1.5deg);
}

.cta-mini-dashboard strong {
  color: #ffffff;
}

.cta-mini-dashboard span {
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid rgba(13, 107, 232, 0.12);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 136px;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-nav,
.footer-legal {
  display: grid;
  gap: 12px;
  color: rgba(16, 35, 63, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a,
.footer-legal a {
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 107, 232, 0.1);
  color: var(--muted);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.legal-page {
  color: #111827;
  background: #ffffff;
}

.legal-main {
  background: #ffffff;
}

.legal-hero {
  padding: 128px 0 56px;
  color: #111827;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.legal-hero .container,
.legal-container {
  max-width: 940px;
}

.legal-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #4b5563;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 0;
  line-height: 1.12;
}

.legal-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #374151;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.9;
}

.legal-section {
  padding: 64px 0 96px;
  background: #ffffff;
}

.legal-container {
  color: #111827;
}

.legal-container h2,
.legal-container h3 {
  color: #111827;
  letter-spacing: 0;
}

.legal-container h2 {
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d1d5db;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-container h3 {
  margin: 42px 0 12px;
  font-size: 1.16rem;
}

.legal-container p,
.legal-container li,
.legal-table th,
.legal-table td {
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.95;
}

.legal-container a {
  color: #111827;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d1d5db;
}

.legal-table th,
.legal-table td {
  padding: 20px 18px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 220px;
  color: #111827;
  background: #f9fafb;
  font-weight: 800;
}

.legal-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1040px) {
  :root {
    --header-height: 68px;
  }

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

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    background: rgba(255, 255, 255, 0.97);
    transition: max-height 0.28s ease, border-color 0.28s ease;
  }

  .mobile-nav.is-open {
    max-height: 420px;
    border-color: rgba(13, 107, 232, 0.1);
  }

  .mobile-nav a {
    width: min(var(--container), calc(100% - 40px));
    min-height: 52px;
    display: flex;
    align-items: center;
    margin-inline: auto;
    border-bottom: 1px solid rgba(13, 107, 232, 0.08);
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-nav-cta {
    justify-content: center;
    margin: 12px auto 18px;
    border: 0;
    border-radius: 999px;
    color: #ffffff !important;
    background: var(--orange);
  }

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

  .hero-grid,
  .solution-grid,
  .preview-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 64px 0 86px;
  }

  .hero-copy::before,
  .solution-map::before,
  .solution-map::after {
    display: none;
  }

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

  .dashboard-mock {
    inset: 0 36px 30px 0;
    transform: none;
  }

  .phone-mock {
    right: 0;
  }

  .solution-copy,
  .preview-copy {
    position: static;
    padding-top: 0;
  }

  .solution-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .solution-node::after {
    display: none;
  }

  .solution-dashboard-card {
    order: -1;
  }

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

  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(4) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 138px auto 1fr;
    min-height: 340px;
  }

  .feature-card:nth-child(1) .feature-card-image,
  .feature-card:nth-child(4) .feature-card-image {
    grid-row: auto;
  }

  .feature-card:nth-child(1) h3,
  .feature-card:nth-child(4) h3 {
    margin-top: 16px;
  }

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

  .compare-grid::before {
    justify-self: center;
    transform: rotate(90deg);
  }

  .compare-panel.before,
  .compare-panel.after {
    grid-column: auto;
    grid-row: auto;
  }

  .admin-preview-shell {
    min-height: auto;
  }

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

  .usecase-card,
  .usecase-card:nth-child(4),
  .usecase-card:nth-child(5) {
    grid-column: auto;
  }

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

  .plan-card.is-recommended {
    transform: none;
  }

  .pricing-top-hero {
    min-height: auto;
  }

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

  .pricing-included-panel {
    max-width: 760px;
    margin-inline: auto;
  }

  .pricing-plan-scroll {
    margin-right: -20px;
    padding-right: 20px;
  }

  .pricing-plan-board {
    grid-template-columns: 190px repeat(3, 270px);
    min-width: 1042px;
  }

  .pricing-campaign {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-inline: auto;
  }

  .campaign-price-card {
    width: min(100%, 640px);
    justify-self: center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  body::before {
    opacity: 0.18;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-band {
    padding: 66px 0;
  }

  .pricing-top-hero {
    padding: 54px 0 58px;
    background:
      radial-gradient(circle at 95% 18%, rgba(13, 107, 232, 0.12), transparent 34%),
      linear-gradient(150deg, #ffffff 0 64%, #eff6ff 64% 100%);
  }

  .pricing-top-hero::before {
    right: -46vw;
    bottom: -18vw;
    width: 110vw;
    height: 110vw;
  }

  .pricing-top-hero::after {
    display: none;
  }

  .pricing-top-hero-copy .eyebrow {
    margin-bottom: 30px;
  }

  .pricing-top-hero h1 {
    font-size: clamp(2.5rem, 10.6vw, 4rem);
    line-height: 1.16;
  }

  .pricing-top-price {
    gap: 8px 10px;
    margin-top: 26px;
  }

  .pricing-top-price-label {
    min-width: 68px;
    min-height: 46px;
    font-size: 1.05rem;
  }

  .pricing-top-price strong {
    font-size: clamp(3.45rem, 16vw, 5.2rem);
  }

  .pricing-top-price small {
    font-size: clamp(1.2rem, 6vw, 1.9rem);
  }

  .pricing-top-tax {
    flex-basis: 100%;
    margin-left: 78px;
    font-size: 1rem;
  }

  .pricing-top-lead {
    font-size: clamp(1.25rem, 6vw, 1.9rem);
  }

  .pricing-top-benefit {
    display: block;
    padding-left: 28px;
    font-size: 1.05rem;
  }

  .pricing-top-benefit::before {
    left: 0;
    top: 0.42em;
    width: 18px;
    height: 18px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    background: transparent;
  }

  .pricing-top-benefit::after {
    left: 6px;
    right: auto;
    top: calc(0.42em + 4px);
    width: 6px;
    height: 9px;
    border: solid var(--orange);
    border-width: 0 2px 2px 0;
    border-radius: 0;
    background: transparent;
    transform: rotate(45deg);
  }

  .pricing-top-actions {
    display: grid;
    gap: 12px;
  }

  .pricing-top-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .pricing-included-panel {
    padding: 24px 16px;
  }

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

  .pricing-included-grid article {
    grid-template-columns: 52px 1fr;
    min-height: 86px;
    padding: 14px 16px;
  }

  .pricing-included-grid span {
    width: 46px;
    height: 46px;
  }

  .pricing-included-grid img {
    width: 30px;
    height: 30px;
  }

  .pricing-campaign {
    margin-bottom: 38px;
    padding: 34px 18px;
  }

  .campaign-copy {
    gap: 20px;
  }

  .campaign-label {
    min-height: 34px;
    padding: 0 18px;
  }

  .campaign-copy h2 {
    font-size: clamp(1.62rem, 7vw, 2.32rem);
    line-height: 1.55;
  }

  .campaign-rule {
    width: 100%;
  }

  .campaign-discount {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .campaign-discount strong {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 64px;
    padding: 0 18px;
    font-size: clamp(2.08rem, 10vw, 3.2rem);
  }

  .campaign-discount img {
    width: 58px;
    height: 58px;
  }

  .campaign-price-card {
    min-height: auto;
    padding: 28px 14px 32px;
    border-radius: 24px;
  }

  .campaign-price-label {
    min-height: 38px;
    padding: 0 22px;
  }

  .campaign-regular {
    gap: 12px;
  }

  .campaign-regular span {
    font-size: 1.05rem;
  }

  .campaign-regular strong {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .campaign-current-main strong {
    font-size: clamp(3.52rem, 15.4vw, 5.45rem);
  }

  .campaign-current-main small {
    margin-left: 4px;
    font-size: clamp(1.1rem, 4.4vw, 1.55rem);
  }

  .campaign-current span {
    font-size: 1.08rem;
  }

  .pricing-table-wrap,
  .comparison-table-wrap {
    margin-right: -14px;
    border-radius: 18px 0 0 18px;
  }

  .pricing-plan-scroll {
    margin-right: -14px;
    padding: 36px 14px 8px 0;
  }

  .pricing-plan-board {
    grid-template-columns: 170px repeat(3, 250px);
    min-width: 962px;
    gap: 10px;
  }

  .pricing-plan-labels {
    min-height: 330px;
  }

  .pricing-plan-labels > div {
    grid-template-columns: 70px 1fr;
    gap: 8px;
    padding: 18px 10px;
  }

  .pricing-plan-labels b,
  .plan-recommend b {
    font-size: 0.98rem;
  }

  .pricing-plan-card h3 {
    min-height: 62px;
  }

  .plan-card-body {
    grid-template-rows: repeat(3, minmax(110px, 1fr));
    min-height: 330px;
    padding: 0 16px;
  }

  .plan-price-row strong {
    font-size: 2rem;
  }

  .plan-recommend {
    grid-template-columns: 70px 1fr;
    gap: 8px;
  }

  .plan-icon {
    width: 50px;
    height: 50px;
  }

  .plan-icon.plan-icon-image {
    width: 72px;
    height: 72px;
  }

  .plan-best-ribbon {
    right: 18px;
    top: -36px;
    min-width: 124px;
    min-height: 38px;
    font-size: 0.95rem;
  }

  .pricing-plan-note {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .pricing-plan-table,
  .comparison-table {
    min-width: 680px;
  }

  .pricing-plan-table th,
  .pricing-plan-table td,
  .comparison-table th,
  .comparison-table td {
    padding: 16px 14px;
  }

  .pricing-cta-card {
    border-radius: 22px;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  .brand {
    width: 116px;
  }

  .hero {
    background:
      radial-gradient(circle at 90% 12%, rgba(255, 159, 26, 0.18), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  }

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

  .hero-grid {
    padding: 42px 0 68px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 1.12;
  }

  .hero-copy p,
  .section-heading p,
  .solution-copy p,
  .preview-copy p,
  .trust-copy p {
    font-size: 0.96rem;
  }

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

  .hero-badges,
  .cta-points {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .dashboard-mock {
    inset: 0;
    border-radius: 20px;
  }

  .mock-layout {
    grid-template-columns: 54px 1fr;
  }

  .mock-sidebar {
    gap: 10px;
  }

  .mock-sidebar span {
    width: 28px;
    height: 28px;
  }

  .mock-main {
    padding: 18px;
  }

  .mock-metrics,
  .solution-dashboard-kpis,
  .admin-kpi-grid,
  .admin-dashboard-grid,
  .problem-grid,
  .feature-grid,
  .usecase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mock-timeline div:nth-child(3),
  .phone-mock {
    display: none;
  }

  .section-heading h2,
  .solution-copy h2,
  .preview-copy h2,
  .trust-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .problem-card,
  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card:nth-child(2):hover,
  .problem-card:nth-child(3):hover {
    grid-template-columns: 1fr;
    min-height: auto;
    transform: none;
  }

  .problem-card-image {
    justify-self: start;
    width: 96px;
  }

  .problem-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .problem-card,
  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card:nth-child(2):hover,
  .problem-card:nth-child(3):hover {
    min-height: 258px;
    padding: 24px;
    transform: none;
    scroll-snap-align: start;
  }

  .problem-card + .problem-card {
    border-left: 1px solid rgba(13, 107, 232, 0.14);
  }

  .problem-card-image {
    justify-self: center;
    width: min(118px, 70%);
  }

  .solution-map {
    padding: 16px;
    border-radius: 22px;
  }

  .solution-nodes {
    grid-template-columns: 1fr 1fr;
  }

  .solution-dashboard,
  .admin-preview-shell {
    grid-template-columns: 1fr;
  }

  .solution-dashboard aside,
  .admin-preview-sidebar {
    display: none;
  }

  .solution-dashboard-main,
  .admin-preview-main {
    padding: 18px;
  }

  .preview-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .preview-tab {
    min-height: 46px;
    padding: 0 12px;
    font-size: 12px;
  }

  .preview-tab::after {
    display: none;
  }

  .preview-bar {
    grid-template-columns: 36px 1fr;
  }

  .preview-bar b {
    grid-column: 2;
  }

  .preview-chart {
    height: 128px;
  }

  .usecase-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .usecase-card-image {
    width: 96px;
    justify-self: start;
  }

  .plan-card,
  .compare-panel {
    min-height: auto;
  }

  .cta-panel {
    min-height: auto;
    border-radius: 24px;
  }

  .cta-mini-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 30px;
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Multi-page official HP additions */
.subpage {
  background:
    radial-gradient(circle at 8% 4%, rgba(13, 107, 232, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.subpage .mobile-nav a.is-active {
  color: var(--blue);
}

.page-hero {
  overflow: hidden;
  padding: clamp(84px, 10vw, 150px) 0 clamp(72px, 8vw, 118px);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.98) 0 48%, rgba(234, 244, 255, 0.78) 48% 100%),
    radial-gradient(circle at 82% 18%, rgba(255, 159, 26, 0.2), transparent 26%),
    radial-gradient(circle at 90% 82%, rgba(13, 107, 232, 0.18), transparent 34%);
}

.page-hero::before {
  content: "ESRAKU";
  position: absolute;
  left: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 22px;
  color: rgba(6, 48, 107, 0.045);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.78;
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.page-hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: 1.1;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(16, 35, 63, 0.74);
  font-size: clamp(1rem, 1.24vw, 1.15rem);
  font-weight: 650;
}

.page-hero-card,
.feature-orbit-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.page-hero-card {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 42px);
}

.page-hero-card::after,
.feature-orbit-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.08);
}

.page-hero-card strong,
.feature-orbit-card strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.2;
}

.page-hero-card span {
  position: relative;
  z-index: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(13, 107, 232, 0.1);
  border-radius: 16px;
  padding: 0 16px;
  color: rgba(16, 35, 63, 0.78);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  font-weight: 850;
}

.page-section {
  background: #ffffff;
}

.split-story,
.process-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.story-card-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

.story-card-grid article,
.process-steps article,
.feature-detail-card {
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.story-card-grid article,
.process-steps article {
  padding: 26px;
}

.story-card-grid b,
.process-steps b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--light-blue);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
}

.story-card-grid h3,
.process-steps h3,
.feature-detail-card h3,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}

.story-card-grid p,
.process-steps p,
.feature-detail-card p,
.contact-card p {
  margin: 10px 0 0;
  color: rgba(16, 35, 63, 0.66);
  font-weight: 650;
}

.feature-orbit-card {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 390px;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 159, 26, 0.18), transparent 28%),
    #ffffff;
}

.feature-orbit-card img {
  position: relative;
  z-index: 1;
  width: min(210px, 70%);
  filter: drop-shadow(0 24px 30px rgba(13, 107, 232, 0.14));
}

.feature-orbit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(16, 35, 63, 0.68);
  font-weight: 700;
}

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

.feature-detail-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px 26px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
}

.feature-detail-card img {
  grid-row: span 3;
  width: 118px;
  justify-self: center;
  filter: drop-shadow(0 18px 22px rgba(13, 107, 232, 0.12));
}

.feature-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.feature-detail-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(16, 35, 63, 0.72);
  font-weight: 800;
}

.feature-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-layout {
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 52px);
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 159, 26, 0.18), transparent 24%),
    #ffffff;
}

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

.contact-card .button {
  width: fit-content;
  margin-top: 10px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 72px);
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(13, 107, 232, 0.13), transparent 34%),
    radial-gradient(circle at 8% 82%, rgba(255, 159, 26, 0.13), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #eaf4ff 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -24vw;
  width: min(740px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.08);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.3vw, 5.35rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-hero-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(16, 35, 63, 0.76);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  font-weight: 750;
  line-height: 2;
}

.contact-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.contact-trust-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.contact-trust-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-hero-copy .hero-actions {
  margin-top: 34px;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 26px;
  padding: clamp(26px, 3.2vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(18, 73, 144, 0.14);
}

.contact-form-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 107, 232, 0.08);
  pointer-events: none;
}

.contact-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-form-card h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.25;
}

.contact-form-card p {
  margin: 10px 0 0;
  color: rgba(16, 35, 63, 0.66);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.contact-field {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-field span,
.contact-consent span {
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-field em {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  margin-left: 6px;
  border-radius: 999px;
  padding: 0 8px;
  color: #ffffff;
  background: var(--orange);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 107, 232, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-weight: 750;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(13, 107, 232, 0.7);
  box-shadow: 0 0 0 4px rgba(13, 107, 232, 0.12);
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(16, 35, 63, 0.75);
  font-weight: 800;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.28em;
  accent-color: var(--blue);
}

.contact-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.contact-form-actions .button {
  min-width: 190px;
}

.contact-form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-mail-fallback {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form-status {
  min-height: 1.8em;
  margin: 0;
  color: rgba(16, 35, 63, 0.72);
  font-weight: 850;
  line-height: 1.7;
}

.contact-form-status.is-error {
  color: #b42318;
}

.contact-form-status.is-success {
  color: #067647;
}

.contact-process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.contact-process-copy h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.22;
}

.contact-process-copy p {
  margin: 16px 0 0;
  color: rgba(16, 35, 63, 0.7);
  font-weight: 750;
  line-height: 1.9;
}

.contact-process-heading {
  max-width: 820px;
  margin: 0 auto clamp(26px, 4vw, 38px);
  text-align: center;
}

.contact-process-heading h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
  font-weight: 900;
  line-height: 1.22;
}

.contact-process-heading p {
  margin: 16px auto 0;
  max-width: 720px;
  color: rgba(16, 35, 63, 0.7);
  font-weight: 750;
  line-height: 1.9;
}

.contact-flow-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 2px 4px 14px;
}

.contact-flow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  min-width: 1040px;
}

.contact-flow-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  min-height: 170px;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 14px;
  padding: 18px 14px 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(18, 73, 144, 0.08);
  text-align: center;
}

.contact-flow-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-top: 3px solid #0d6be8;
  border-right: 3px solid #0d6be8;
  transform: translateY(-50%) rotate(45deg);
  background: transparent;
}

.contact-flow-steps b {
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.contact-flow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
}

.contact-flow-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-flow-steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
}

.contact-flow-steps p {
  margin: 0;
  color: rgba(16, 35, 63, 0.68);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .page-hero-grid,
  .split-story,
  .process-grid,
  .contact-layout,
  .contact-hero-grid,
  .contact-process-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contact-flow-scroll {
    margin-right: 0;
    padding-right: 4px;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 68px 0;
  }

  .page-hero::before {
    display: none;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .page-hero-card,
  .feature-orbit-card,
  .contact-card {
    border-radius: 24px;
  }

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

  .feature-detail-card img {
    grid-row: auto;
    justify-self: start;
    width: 96px;
  }

  .contact-card .button {
    width: 100%;
  }

  .contact-hero {
    min-height: auto;
    padding: 58px 0;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form-actions .button {
    width: 100%;
  }

  .contact-mail-fallback {
    justify-self: center;
  }

  .contact-flow-steps {
    min-width: 900px;
    gap: 18px;
  }

  .contact-flow-steps article {
    min-height: auto;
  }
}

/* v1.3 premium interaction and case-study layer */
:root {
  --mesh-blue: rgba(13, 107, 232, 0.12);
  --mesh-orange: rgba(255, 159, 26, 0.16);
}

.button:focus-visible,
.preview-tab:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 159, 26, 0.55);
  outline-offset: 4px;
}

.hero::after,
.page-hero::after {
  animation: blobDrift 10s ease-in-out infinite alternate;
}

.button-primary,
.header-cta,
.button-orange {
  animation: ctaFloat 4.8s ease-in-out infinite;
}

.reveal.is-visible .mini-ui-scene,
.reveal.is-visible .page-hero-card,
.reveal.is-visible .admin-preview-shell {
  animation: softRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes blobDrift {
  from { transform: translate3d(0, 0, 0) rotate(12deg); }
  to { transform: translate3d(-18px, 16px, 0) rotate(24deg); }
}

@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes softRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes shimmerMove {
  from { transform: translateX(-60%); }
  to { transform: translateX(160%); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.76; }
  50% { transform: scale(1.25); opacity: 1; }
}

.hub-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at center, rgba(13, 107, 232, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(234,244,255,0.9));
}

.hub-center {
  position: relative;
  z-index: 3;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  gap: 6px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(6, 48, 107, 0.16);
}

.hub-center img {
  width: 92px;
}

.hub-center strong {
  font-size: 14px;
}

.hub-node {
  position: absolute;
  z-index: 2;
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 107, 232, 0.14);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.node-admin { left: 24px; top: 54px; }
.node-site { right: 24px; top: 60px; }
.node-media { left: 28px; bottom: 58px; }
.node-hq { right: 26px; bottom: 54px; }

.hub-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(13, 107, 232, 0.38);
  stroke-width: 2;
  stroke-dasharray: 7 9;
  animation: lineDraw 2.2s ease both;
}

@keyframes lineDraw {
  from { stroke-dashoffset: 120; opacity: 0.2; }
  to { stroke-dashoffset: 0; opacity: 1; }
}

.about-pc-mock-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background:
    radial-gradient(circle at 50% 56%, rgba(13, 107, 232, 0.16), transparent 45%),
    radial-gradient(circle at 78% 20%, rgba(255, 159, 26, 0.16), transparent 24%);
  box-shadow: none;
}

.about-pc-mock-card::before {
  content: "";
  position: absolute;
  inset: 18% 4% 8%;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(234,244,255,0.92), rgba(255,255,255,0.58));
  filter: blur(2px);
}

.about-pc-mock-card img {
  position: relative;
  z-index: 1;
  width: min(680px, 116%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(6, 48, 107, 0.18));
  animation: mockFloat 6s ease-in-out infinite;
}

.mock-floating-badge {
  position: absolute;
  z-index: 2;
  right: 10%;
  bottom: 10%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--navy);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.story-lead {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding: 26px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 159, 26, 0.36), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-md);
}

.story-lead strong {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.25;
}

.story-lead span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.about-concept {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 159, 26, 0.1), transparent 28%),
    radial-gradient(circle at 14% 86%, rgba(13, 107, 232, 0.1), transparent 34%),
    #ffffff;
}

.about-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(13,107,232,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,107,232,0.18) 1px, transparent 1px);
  background-size: 42px 42px;
}

.about-concept .split-story {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 28px;
}

.about-concept .section-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.about-concept .section-heading::after {
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.about-concept .eyebrow,
.about-concept .section-heading h2,
.about-concept .section-heading p {
  color: #0b1220;
}

.about-concept .section-heading p {
  color: rgba(11,18,32,0.74);
}

.concept-title {
  line-height: 1.12;
}

.concept-speed span:nth-child(1) {
  color: #57a8ff;
}

.concept-speed span:nth-child(2) {
  color: #ff6b6b;
}

.concept-speed span:nth-child(3) {
  color: #ffd84d;
}

.about-concept .story-lead {
  width: 100%;
  margin-bottom: 0;
  color: var(--navy);
  background: rgba(247,251,255,0.96);
  border: 1px solid rgba(13,107,232,0.13);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.about-concept .story-lead strong {
  width: fit-content;
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(1rem, 2.05vw, 1.85rem);
  line-height: 1.2;
  white-space: nowrap;
}

.about-concept .story-lead span {
  color: rgba(16,35,63,0.68);
}

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

.about-concept .story-card-grid article {
  background: rgba(255,255,255,0.96);
}

.about-mock-carousel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  background: transparent;
}

.about-mock-viewport {
  position: relative;
  overflow: visible;
  background: transparent;
}

.about-mock-track {
  display: grid;
}

.about-mock-slide {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.about-mock-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.about-mock-slide img {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(4,12,26,0.28));
}

.about-mock-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-mock-arrow,
.about-mock-dots button {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.about-mock-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.about-mock-arrow:hover,
.about-mock-arrow:focus-visible {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-2px);
  outline: none;
}

.about-mock-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
}

.about-mock-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  background: rgba(13,107,232,0.24);
  transition: width 0.2s ease, background 0.2s ease;
}

.about-mock-dots button.is-active {
  width: 32px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.about-mock-dots button:focus-visible {
  outline: 3px solid rgba(255,159,26,0.42);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .about-mock-slide,
  .about-mock-arrow,
  .about-mock-dots button {
    transition: none;
  }
}

.story-timeline article {
  position: relative;
  padding-left: 34px;
}

.story-timeline article::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 32px;
  bottom: -18px;
  width: 2px;
  background: linear-gradient(var(--blue), transparent);
}

.story-timeline article:last-child::before {
  display: none;
}

.mini-ui-scene {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(13,107,232,0.06) 1px, transparent 1px),
    linear-gradient(rgba(13,107,232,0.05) 1px, transparent 1px),
    #f7fbff;
  background-size: 24px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 14px 32px rgba(6, 48, 107, 0.08);
}

.mini-ui-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.58), transparent 62%);
  transform: translateX(-60%);
  animation: shimmerMove 4.8s ease-in-out infinite;
}

.scene-window,
.scene-stack,
.scene-calendar,
.scene-post,
.scene-phone,
.scene-bars,
.scene-meter,
.scene-avatar,
.scene-lines,
.scene-sync,
.scene-status,
.scene-bubbles,
.scene-publish {
  position: relative;
  z-index: 1;
}

.scene-window {
  width: 150px;
  height: 92px;
  display: flex;
  align-items: start;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(13,107,232,0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.scene-window span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.scene-window span:nth-child(2) { background: var(--blue); }
.scene-window strong { margin-left: auto; color: var(--muted); font-size: 11px; }

.scene-sync {
  position: absolute;
  display: flex;
  gap: 10px;
}

.scene-sync i,
.scene-bubbles i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.scene-sync i:nth-child(2), .scene-bubbles i:nth-child(2) { animation-delay: 0.25s; background: var(--blue); }
.scene-sync i:nth-child(3), .scene-bubbles i:nth-child(3) { animation-delay: 0.5s; }

.scene-stack {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.scene-stack b,
.scene-lines span,
.scene-post span {
  display: block;
  width: 78px;
  height: 10px;
  border-radius: 999px;
  background: rgba(13,107,232,0.22);
}

.scene-avatar {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: var(--shadow-sm);
}

.scene-lines {
  position: absolute;
  right: 22px;
  display: grid;
  gap: 10px;
}

.scene-schedule,
.scene-calendar {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 8px;
}

.scene-schedule b,
.scene-calendar b {
  height: 30px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.scene-status {
  position: absolute;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.scene-status span,
.scene-publish {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.scene-phone {
  width: 92px;
  height: 132px;
  display: grid;
  gap: 8px;
  padding: 16px 10px;
  border: 6px solid var(--navy);
  border-radius: 24px;
  background: #ffffff;
}

.scene-phone span,
.scene-phone b,
.scene-post b {
  display: block;
  border-radius: 10px;
  background: var(--light-blue);
}

.scene-phone span { height: 34px; background: linear-gradient(135deg, var(--blue), var(--orange)); }
.scene-phone b { height: 16px; }
.scene-publish { position: absolute; right: 20px; bottom: 20px; }

.scene-post {
  width: 150px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.scene-post b { height: 54px; }
.scene-bubbles { position: absolute; right: 24px; top: 26px; display: flex; gap: 8px; }

.scene-bars {
  height: 104px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.scene-bars b {
  width: 24px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), rgba(13,107,232,0.22));
}

.scene-bars b:nth-child(1) { height: 48px; }
.scene-bars b:nth-child(2) { height: 82px; }
.scene-bars b:nth-child(3) { height: 62px; }
.scene-bars b:nth-child(4) { height: 102px; background: linear-gradient(180deg, var(--orange), rgba(255,159,26,0.28)); }

.scene-meter {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: rgba(13,107,232,0.12);
}

.scene-meter span { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--orange); }

.feature-detail-card {
  position: relative;
  overflow: hidden;
}

.feature-detail-card .mini-ui-scene {
  grid-column: 1;
  grid-row: 1 / span 4;
  align-self: start;
  justify-self: center;
}

.feature-detail-card h3,
.feature-detail-card p,
.feature-detail-card ul,
.feature-detail-card .feature-ease {
  grid-column: 2;
}

.feature-ease {
  grid-column: 2;
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--light-blue);
  font-size: 12px;
  font-weight: 900;
}

.operation-flow-visual {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px minmax(260px, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.scatter-side,
.unified-side {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.scatter-side {
  background: repeating-linear-gradient(-45deg, rgba(107,114,128,0.06) 0 8px, transparent 8px 18px), #f6f7f9;
}

.scatter-side span {
  position: absolute;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-weight: 900;
}

.scatter-side span:nth-child(1) { left: 28px; top: 36px; }
.scatter-side span:nth-child(2) { right: 34px; top: 62px; }
.scatter-side span:nth-child(3) { left: 38%; top: 126px; }
.scatter-side span:nth-child(4) { left: 46px; bottom: 46px; }
.scatter-side span:nth-child(5) { right: 42px; bottom: 36px; }

.flow-arrow {
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
}

.flow-arrow i {
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  position: relative;
}

.flow-arrow i::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
}

.unified-side { background: linear-gradient(135deg, var(--navy), var(--blue)); }

.unified-window {
  height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,0.96);
}

.unified-window strong { font-size: 1.3rem; color: var(--navy); }
.unified-window div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.unified-window span { height: 54px; border-radius: 16px; background: var(--light-blue); }
.unified-window small { color: var(--muted); font-weight: 800; }

.usecase-scene-card .usecase-card-image {
  transform: scale(1.08);
}

.plan-audience {
  margin-top: 12px !important;
  color: var(--navy) !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
}

.pricing-reassurance,
.consultation-grid {
  display: grid;
  gap: 14px;
}

.pricing-reassurance {
  grid-template-columns: repeat(3, 1fr);
  margin-top: -54px;
  margin-bottom: 80px;
}

.pricing-reassurance span,
.consultation-grid article {
  min-height: 62px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(13,107,232,0.13);
  border-radius: 18px;
  padding: 0 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-weight: 900;
}

.consultation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 32px;
}

.contact-card {
  border-color: rgba(255,159,26,0.3);
}

.case-hero-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.case-hero-stack img,
.case-card img,
.public-site-mock img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.case-hero-note {
  width: min(420px, 88%);
  margin: -62px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(13,107,232,0.14);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
}

.case-hero-note b { color: var(--navy); }
.case-hero-note span { color: var(--muted); font-weight: 750; }

.hp-production-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 159, 26, 0.22), transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(13, 107, 232, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 52%, #fff4df 100%);
}

.hp-production-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.hp-production-hero h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(4.4rem, 12vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hp-production-hero p {
  max-width: 760px;
  color: rgba(16, 35, 63, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 750;
  line-height: 2;
}

.hp-production-points {
  display: grid;
  gap: 14px;
}

.hp-production-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hp-production-points b {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}

.hp-production-points strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
}

.hp-production-points span {
  color: rgba(16, 35, 63, 0.66);
  font-weight: 700;
  line-height: 1.75;
}

.hp-example-section {
  overflow: hidden;
  background: #ffffff;
}

.hp-example-rail {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(430px, 36vw, 620px);
  overflow: hidden;
  padding: 0;
  perspective: 1050px;
  perspective-origin: 50% 42%;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.hp-example-rail::-webkit-scrollbar {
  display: none;
}

.hp-example-rail.is-dragging {
  cursor: grabbing;
}

.hp-example-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(620px, 66vw);
  min-width: 0;
  background: transparent;
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + 108px), -520px) scale(0.28) rotateY(76deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  opacity: 0.12;
  transition: transform 0.5s cubic-bezier(0.2, 0.72, 0.22, 1), opacity 0.5s ease, filter 0.5s ease;
  filter: saturate(0.42);
}

.hp-example-card.is-current {
  z-index: 4;
  opacity: 1;
  transform: translate3d(-50%, calc(-50% - 24px), 130px) scale(1.28) rotateY(0deg);
  filter: saturate(1);
}

.hp-example-card.is-prev {
  z-index: 3;
  opacity: 0.48;
  transform: translate3d(calc(-50% - 340px), calc(-50% + 46px), -260px) scale(0.52) rotateY(58deg);
  filter: saturate(0.62);
}

.hp-example-card.is-next {
  z-index: 3;
  opacity: 0.48;
  transform: translate3d(calc(-50% + 340px), calc(-50% + 46px), -260px) scale(0.52) rotateY(-58deg);
  filter: saturate(0.62);
}

.hp-example-card.is-far-prev {
  opacity: 0.16;
  transform: translate3d(calc(-50% - 520px), calc(-50% + 110px), -520px) scale(0.3) rotateY(76deg);
}

.hp-example-card.is-far-next {
  opacity: 0.16;
  transform: translate3d(calc(-50% + 520px), calc(-50% + 110px), -520px) scale(0.3) rotateY(-76deg);
}

.hp-example-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.hp-production-page {
  background: #ffffff;
}

.hp-production-page .hp-production-hero {
  padding: clamp(54px, 7vw, 86px) 0 clamp(42px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(13, 107, 232, 0.08), transparent 42%),
    linear-gradient(300deg, rgba(13, 107, 232, 0.1), transparent 36%),
    #f7fbff;
}

.hp-production-page .hp-production-hero-grid {
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(34px, 5vw, 70px);
}

.hp-production-copy h1 {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.hp-production-copy h1 span {
  color: var(--orange);
}

.hp-production-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #223a57;
  font-weight: 800;
  line-height: 2;
}

.hp-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 26px;
}

.hp-hero-proof-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 4px 12px;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(7, 31, 69, 0.07);
}

.hp-hero-proof-grid svg {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-hero-proof-grid svg {
  grid-row: span 2;
  width: 36px;
  height: 36px;
}

.hp-hero-proof-grid b {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.hp-hero-proof-grid strong {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.hp-hero-proof-grid strong:first-of-type {
  color: var(--orange);
  font-size: 1.25rem;
}

.hp-hero-proof-grid strong span {
  margin-left: 2px;
  color: var(--navy);
  font-size: 0.8rem;
}

.hp-hero-visual {
  position: relative;
  min-height: clamp(360px, 37vw, 540px);
}

.hp-hero-visual-collage {
  min-height: clamp(430px, 43vw, 640px);
}

.hp-hero-visual img {
  display: block;
  position: absolute;
  object-fit: contain;
  object-position: top;
  filter: drop-shadow(0 24px 34px rgba(7, 31, 69, 0.18));
}

.hp-hero-mock {
  aspect-ratio: 16 / 9;
  transform-origin: center center;
}

.hp-hero-mock-luxe {
  z-index: 4;
  left: 18%;
  top: 0;
  width: min(420px, 57%);
  transform: rotate(-7deg);
}

.hp-hero-mock-nagomi {
  z-index: 3;
  right: -1%;
  top: 19%;
  width: min(360px, 48%);
  transform: rotate(8deg);
}

.hp-hero-mock-mira {
  z-index: 5;
  left: 3%;
  top: 35%;
  width: min(430px, 58%);
}

.hp-hero-mock-melt {
  z-index: 4;
  right: 5%;
  bottom: 15%;
  width: min(330px, 44%);
  transform: rotate(-8deg);
}

.hp-hero-mock-rouge {
  z-index: 3;
  left: 11%;
  bottom: -1%;
  width: min(360px, 48%);
  transform: rotate(9deg);
}

.hp-hero-main-shot {
  z-index: 2;
  left: 7%;
  top: 8%;
  width: min(560px, 78%);
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.hp-hero-side-shot {
  z-index: 3;
  width: min(300px, 42%);
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.hp-hero-side-shot-top {
  right: 0;
  top: 2%;
  transform: rotate(6deg);
}

.hp-hero-side-shot-bottom {
  right: 4%;
  bottom: 2%;
  transform: rotate(-5deg);
}

.hp-production-page .hp-production-hero-full {
  overflow: hidden;
  padding: 0;
  background: #f6fbff;
}

.hp-production-hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
}

.hp-production-hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.hp-hero-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
}

.hp-hero-hotspot-contact {
  left: 5.1%;
  top: 85.1%;
  width: 13.8%;
  height: 5.8%;
}

.hp-hero-hotspot-pricing {
  left: 20.6%;
  top: 85.1%;
  width: 10.7%;
  height: 5.8%;
}

.hp-hero-hotspot:focus-visible {
  outline: 3px solid rgba(13, 107, 232, 0.78);
  outline-offset: 4px;
}

.hp-impact-section,
.hp-design-taste-section {
  padding: clamp(42px, 5vw, 68px) 0 0;
  background: #ffffff;
}

.hp-before-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.hp-mira-impact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(26px, 3.8vw, 54px);
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 10%, rgba(13, 107, 232, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 24px 54px rgba(7, 31, 69, 0.08);
}

.hp-mira-impact-visual {
  position: relative;
  min-height: clamp(300px, 29vw, 430px);
}

.hp-mira-impact-visual::before {
  content: "";
  position: absolute;
  inset: 14% 2% 7% 10%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 107, 232, 0.14), rgba(255, 151, 28, 0.12));
  filter: blur(10px);
}

.hp-mira-impact-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 660px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 34px rgba(7, 31, 69, 0.16));
}

.hp-mira-impact-copy {
  display: grid;
  align-content: center;
}

.hp-mira-impact-copy .eyebrow {
  margin-bottom: 10px;
}

.hp-mira-impact-copy h3 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 900;
  letter-spacing: 0;
}

.hp-mira-impact-copy ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-mira-impact-copy li {
  position: relative;
  padding-left: 36px;
  color: #203956;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-weight: 850;
  line-height: 1.72;
}

.hp-mira-impact-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 22px;
  height: 22px;
  background: url("./asset/kakuteishihuto.png") center / contain no-repeat;
}

.hp-compare-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(13, 107, 232, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 31, 69, 0.06);
}

.hp-compare-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: top;
}

.hp-compare-before img {
  filter: grayscale(1) contrast(0.9);
}

.hp-compare-card div {
  padding: 28px;
}

.hp-compare-card h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 1.28rem;
  font-weight: 900;
}

.hp-compare-card h3 span {
  color: var(--navy);
  font-size: 0.9rem;
}

.hp-compare-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-compare-card li {
  position: relative;
  padding-left: 26px;
  color: #263d58;
  font-weight: 800;
  line-height: 1.65;
}

.hp-compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--blue);
  font-weight: 900;
}

.hp-compare-before li::before {
  content: "×";
  color: #66758a;
}

.hp-compare-after li::before {
  content: "✓";
  color: var(--orange);
}

.hp-impact-arrow {
  width: 64px;
  height: 46px;
  clip-path: polygon(0 18%, 58% 18%, 58% 0, 100% 50%, 58% 100%, 58% 82%, 0 82%);
  background: linear-gradient(90deg, #9dccff, var(--blue));
  box-shadow: 0 10px 22px rgba(13, 107, 232, 0.22);
}

.hp-design-taste-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.hp-design-taste-grid article {
  overflow: hidden;
  border: 1px solid rgba(13, 107, 232, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 31, 69, 0.05);
}

.hp-design-taste-grid div {
  min-height: 92px;
  background-size: cover;
  background-position: center;
}

.hp-design-taste-grid span {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.taste-luxury div {
  background-image: url("./asset/Newicon/design/design_test/koukyuukann.png");
}

.taste-clean div {
  background-image: url("./asset/Newicon/design/design_test/seisokei.png");
}

.taste-mature div {
  background-image: url("./asset/Newicon/design/design_test/otona.png");
}

.taste-natural div {
  background-image: url("./asset/Newicon/design/design_test/natyulal.png");
}

.taste-nostalgic div {
  background-image: url("./asset/Newicon/design/design_test/nosutaruzikku.png");
}

.taste-anime div {
  background-image: url("./asset/Newicon/design/design_test/anime.png");
}

.taste-girly div {
  background-image: url("./asset/Newicon/design/design_test/ga-ri.png");
}

.taste-japanese div {
  background-image: url("./asset/Newicon/design/design_test/wahuu.png");
}

.hp-production-page .final-cta {
  padding-top: clamp(42px, 5vw, 72px);
  background: #ffffff;
}

.hp-production-page .cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px) clamp(26px, 5vw, 64px);
  border-radius: 12px;
  background:
    radial-gradient(circle at 95% 50%, rgba(13, 107, 232, 0.15), transparent 20%),
    linear-gradient(135deg, #f5fbff, #eaf4ff);
}

.hp-production-page .cta-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.55;
}

.hp-production-page .cta-panel .hero-actions {
  margin: 0;
}

.hp-production-page .cta-panel .cta-secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(13, 107, 232, 0.34);
  box-shadow: 0 14px 30px rgba(7, 31, 69, 0.08);
}

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

.case-card {
  overflow: hidden;
  border: 1px solid rgba(13,107,232,0.13);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(6,48,107,0.14);
}

.case-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.case-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.case-card span,
.mock-label {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--light-blue);
  font-size: 12px;
  font-weight: 900;
}

.case-card h3 { margin: 0; color: var(--ink); font-size: 1.25rem; }
.case-card p { margin: 0; color: rgba(16,35,63,0.68); font-weight: 650; }
.case-card b { color: var(--navy); font-size: 0.92rem; }
.case-card a { color: var(--blue); font-weight: 900; }

.case-detail-section {
  background:
    linear-gradient(90deg, rgba(13,107,232,0.055) 1px, transparent 1px),
    linear-gradient(rgba(13,107,232,0.045) 1px, transparent 1px),
    var(--pale-blue);
  background-size: 40px 40px;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 34px;
}

.case-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.case-before-after article,
.case-feature-tags,
.public-site-mock,
.case-admin-mock {
  border: 1px solid rgba(13,107,232,0.13);
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.case-before-after b { color: var(--blue); font-family: "Outfit", sans-serif; }
.case-before-after p { color: var(--muted); font-weight: 700; }

.case-feature-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.case-feature-tags span,
.public-site-tabs span,
.case-flow span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--light-blue);
  font-weight: 900;
}

.case-mock-gallery {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.public-site-mock,
.case-admin-mock {
  display: grid;
  gap: 16px;
}

.public-site-mock img {
  max-height: 480px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.public-site-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-admin-shell {
  min-height: 440px;
}

.case-flow {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.case-flow i {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

@media (max-width: 1040px) {
  .hp-production-hero-grid,
  .operation-flow-visual,
  .case-card-grid,
  .case-detail-grid,
  .case-mock-gallery {
    grid-template-columns: 1fr;
  }

  .hp-example-rail {
    height: clamp(390px, 46vw, 520px);
  }

  .flow-arrow i {
    transform: rotate(90deg);
  }

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

@media (max-width: 760px) {
  .hp-production-hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.4rem);
  }

  .hp-production-points article {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .hp-production-points b {
    width: 38px;
    height: 38px;
  }

  .hp-example-rail {
    height: 310px;
    padding: 0;
    perspective: 760px;
  }

  .hp-example-card {
    width: min(300px, 82vw);
    transform: translate3d(-50%, calc(-50% + 72px), -300px) scale(0.36) rotateY(58deg);
  }

  .hp-example-card.is-current {
    transform: translate3d(-50%, calc(-50% - 10px), 72px) scale(1.16) rotateY(0deg);
  }

  .hp-example-card.is-prev {
    transform: translate3d(calc(-50% - 154px), calc(-50% + 34px), -150px) scale(0.54) rotateY(44deg);
  }

  .hp-example-card.is-next {
    transform: translate3d(calc(-50% + 154px), calc(-50% + 34px), -150px) scale(0.54) rotateY(-44deg);
  }

  .hp-example-card.is-far-prev {
    transform: translate3d(calc(-50% - 245px), calc(-50% + 72px), -300px) scale(0.36) rotateY(58deg);
  }

  .hp-example-card.is-far-next {
    transform: translate3d(calc(-50% + 245px), calc(-50% + 72px), -300px) scale(0.36) rotateY(-58deg);
  }

  .hub-card {
    min-height: 320px;
  }

  .hub-center {
    width: 130px;
    height: 130px;
  }

  .hub-node {
    font-size: 12px;
    padding: 0 10px;
  }

  .about-pc-mock-card {
    min-height: 280px;
    overflow: hidden;
  }

  .about-pc-mock-card img {
    width: min(520px, 128%);
  }

  .mock-floating-badge {
    right: 18px;
    bottom: 18px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.75rem;
  }

  .node-admin { left: 12px; top: 34px; }
  .node-site { right: 12px; top: 44px; }
  .node-media { left: 12px; bottom: 44px; }
  .node-hq { right: 12px; bottom: 34px; }

  .feature-ease {
    grid-column: auto;
  }

  .feature-detail-card .mini-ui-scene,
  .feature-detail-card h3,
  .feature-detail-card p,
  .feature-detail-card ul,
  .feature-detail-card .feature-ease {
    grid-column: auto;
    grid-row: auto;
  }

  .operation-flow-visual,
  .case-before-after,
  .consultation-grid,
  .pricing-reassurance {
    grid-template-columns: 1fr;
  }

  .pricing-reassurance {
    margin-top: -24px;
  }

  .case-card img {
    height: 160px;
  }

  .public-site-mock img {
    max-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-primary,
  .header-cta,
  .button-orange,
  .mini-ui-scene::after,
  .hero::after,
  .page-hero::after,
  .scene-sync i,
  .scene-bubbles i {
    animation: none !important;
  }
}

/* About ESRaku hero: background photo + brand overlay */
.about-hero {
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(92px, 9vw, 138px) 0 clamp(70px, 7vw, 104px);
  background:
    linear-gradient(90deg, rgba(6, 48, 107, 0.78), rgba(13, 107, 232, 0.54)),
    url("./1.PC background.jpg") center center / cover no-repeat;
}

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

.about-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: clamp(22px, 3.4vw, 48px);
}

.about-hero .eyebrow,
.about-hero h1,
.about-hero p {
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(6, 48, 107, 0.22);
}

.about-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.about-hero h1 {
  max-width: 700px;
  font-size: clamp(2.75rem, 4.45vw, 4.45rem);
}

.hero-color-flow {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 22%,
    #0b3a7a 38%,
    #ff9f1a 54%,
    #ffffff 70%,
    #ffffff 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTextFlow 5.8s linear infinite;
}

.hero-color-flow .tone-navy {
  color: #062f6b;
  -webkit-text-fill-color: #062f6b;
}

.hero-color-flow .tone-orange {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

@keyframes heroTextFlow {
  from {
    background-position: 160% 50%;
  }
  to {
    background-position: -80% 50%;
  }
}

.about-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero .button-secondary {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(6, 48, 107, 0.22);
}

.about-hero .hero-actions {
  justify-content: flex-start;
}

.about-hero .about-pc-mock-card {
  min-height: 580px;
  background: transparent;
}

.about-hero .about-pc-mock-card::before,
.about-hero .page-hero-card::after {
  display: none;
}

.about-hero .about-pc-mock-card img {
  width: min(1120px, 205%);
  filter: drop-shadow(0 36px 44px rgba(0, 0, 0, 0.24));
}

.about-hero .mock-floating-badge {
  right: 8%;
  bottom: 7%;
  background: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1040px) {
  .about-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero .about-pc-mock-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: auto;
    padding: 72px 0 48px;
    background:
      linear-gradient(180deg, rgba(6, 48, 107, 0.76), rgba(13, 107, 232, 0.62)),
      url("./1.PC background.jpg") center center / cover no-repeat;
  }

  .about-hero .page-hero-grid {
    gap: 22px;
  }

  .about-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .about-hero p {
    font-size: 0.98rem;
  }

  .about-hero .hero-actions {
    justify-content: flex-start;
  }

  .about-hero .hero-actions .button {
    width: fit-content;
  }

  .about-hero .about-pc-mock-card {
    min-height: 300px;
    overflow: hidden;
  }

  .about-hero .about-pc-mock-card img {
    width: min(560px, 140%);
  }

  .about-hero .mock-floating-badge {
    display: none;
  }

  .about-concept .section-heading p br {
    display: none;
  }

  .about-concept .story-lead {
    padding: 20px;
  }

  .about-concept .story-lead strong {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

  .about-concept .story-card-grid {
    grid-template-columns: 1fr;
  }

  .about-mock-carousel {
    gap: 12px;
    padding: 0;
  }

  .about-mock-slide {
    padding: 0;
  }

  .about-mock-controls {
    gap: 10px;
  }

  .about-mock-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .about-mock-dots {
    gap: 7px;
  }

  .about-mock-dots button {
    width: 9px;
    height: 9px;
  }

  .about-mock-dots button.is-active {
    width: 24px;
  }
}

/* TOP rebuild */
.top-rebuild {
  color: #061f46;
  background: #ffffff;
}

.top-rebuild::before {
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent 34%);
}

.top-rebuild .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 43, 96, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.top-rebuild .brand img {
  width: 160px;
}

.top-rebuild .desktop-nav a {
  color: #071f45;
  font-weight: 800;
}

.top-rebuild .desktop-nav a::after {
  background: #1265e8;
}

.top-rebuild .header-cta {
  min-height: 42px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0e73f6, #0455d8);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(0, 86, 216, 0.2);
}

.top-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 58px) 0 28px;
  background:
    linear-gradient(130deg, rgba(230, 243, 255, 0.92), rgba(255, 255, 255, 0.95) 45%, rgba(235, 246, 255, 0.98)),
    #f7fbff;
}

.top-hero::before,
.top-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.top-hero::before {
  inset: auto -8% -20% -8%;
  height: 220px;
  background:
    linear-gradient(145deg, rgba(13, 107, 232, 0.12), transparent 58%),
    linear-gradient(20deg, transparent 34%, rgba(13, 107, 232, 0.1) 35%, transparent 70%);
  clip-path: polygon(0 22%, 18% 36%, 42% 18%, 72% 42%, 100% 14%, 100% 100%, 0 100%);
}

.top-hero::after {
  top: -18%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 107, 232, 0.09), transparent 62%);
}

.top-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.top-hero-copy {
  padding: 18px 0 0;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 17px;
  border-radius: 999px;
  color: #1265e8;
  background: #deedff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
}

.top-hero h1 {
  margin: 28px 0 20px;
  color: #061f46;
  font-size: clamp(2.55rem, 4.05vw, 4.1rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.top-hero h1 .hero-line {
  display: block;
  white-space: nowrap;
}

.top-hero h1 span {
  color: #ff920f;
}

.top-hero h1 .hero-line {
  color: inherit;
}

.top-hero p {
  max-width: 560px;
  margin: 0;
  color: #18324f;
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  font-weight: 700;
  line-height: 2;
}

.top-hero-actions,
.top-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 220px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid rgba(13, 107, 232, 0.65);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.top-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0e73f6, #0056df);
  box-shadow: 0 18px 38px rgba(0, 86, 216, 0.22);
}

.top-button-secondary {
  color: #0a5ee4;
  background: rgba(255, 255, 255, 0.8);
}

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

.hero-orbit {
  position: absolute;
  width: min(620px, 94%);
  aspect-ratio: 1 / 0.72;
  border: 1.5px dashed rgba(13, 107, 232, 0.44);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1.5px dashed rgba(13, 107, 232, 0.24);
  border-radius: 50%;
  transform: rotate(15deg);
}

.hero-pc-mock {
  position: relative;
  z-index: 2;
  width: min(680px, 92%);
  filter: drop-shadow(0 34px 42px rgba(7, 31, 69, 0.18));
}

.hero-phone-mock {
  position: absolute;
  z-index: 3;
  right: calc(2% + 30px);
  bottom: calc(5% + 30px);
  width: min(282px, 40.8%);
  filter: drop-shadow(0 22px 34px rgba(7, 31, 69, 0.22));
}

.hero-float {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 92px;
  min-height: 96px;
  padding: 10px 9px 12px;
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 16px;
  color: #061f46;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(7, 31, 69, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.hero-float img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 2px;
}

.hero-float-01 { top: 4%; left: 10%; }
.hero-float-02 { top: 4%; right: 5%; }
.hero-float-03 { top: 32%; left: 3%; }
.hero-float-04 { top: 32%; right: -2%; }
.hero-float-05 { bottom: 22%; left: 7%; }
.hero-float-06 { bottom: 17%; right: 2%; }
.hero-float-07 { bottom: 1%; left: 40%; }

.top-stat-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 690px;
  margin-top: -18px;
}

.top-stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 18px 24px;
  border: 1px solid rgba(13, 107, 232, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(7, 31, 69, 0.1);
}

.top-line-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: #1265e8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-stat-card .top-line-icon {
  width: 46px;
  height: 46px;
}

.top-stat-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.top-about-icon {
  flex: 0 0 auto;
  width: 151px;
  height: 151px;
  object-fit: contain;
}

.top-problem-icon {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.top-stat-card span {
  display: block;
  color: #314761;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.top-stat-card strong {
  display: block;
  color: #061f46;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.5;
}

.top-stat-card.is-gold strong {
  color: #c9971d;
  line-height: 1.12;
}

.stat-prefix,
.stat-result {
  display: block;
}

.top-stat-card .stat-result {
  display: flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}

.top-stat-card .stat-prefix,
.top-stat-card .stat-unit {
  font-size: 1.02rem;
}

.top-stat-card .stat-unit {
  display: inline;
}

.stat-number {
  color: #c9971d;
  font-size: 1.82rem;
  font-style: normal;
  line-height: 0.95;
}

.top-stat-card .stat-unit {
  color: #c9971d;
}

.stat-highlight {
  color: #ff920f;
  font-size: 1.55em;
  font-style: normal;
  line-height: 1;
}

.top-section {
  padding: clamp(44px, 5.6vw, 76px) 0;
  background: #ffffff;
}

.top-section-heading {
  max-width: 860px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  text-align: center;
}

.top-section-heading span {
  display: block;
  color: #1265e8;
  font-family: "Outfit", sans-serif;
  font-size: 0.93rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.top-section-heading h2 {
  margin: 4px 0 8px;
  color: #061f46;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.top-section-heading p {
  margin: 0;
  color: #51657f;
  font-size: 0.98rem;
  font-weight: 700;
}

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

.top-about-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 22px 26px;
  border: 1px solid rgba(13, 107, 232, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 31, 69, 0.04);
}

.top-about-card h3,
.top-feature-card h3,
.top-problem-card h3,
.top-specialized-card h3 {
  margin: 0;
  color: #061f46;
  font-weight: 900;
  letter-spacing: 0;
}

.top-about-card h3 {
  color: #1265e8;
  font-size: 1rem;
}

.top-about-card p,
.top-feature-card p,
.top-problem-card p,
.top-specialized-card p {
  margin: 8px 0 0;
  color: #334861;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.75;
}

.top-problems,
.top-features,
.top-before-after,
.top-specialized {
  padding-top: 18px;
}

.top-problem-grid,
.top-feature-grid,
.top-specialized-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.top-problem-card,
.top-feature-card,
.top-specialized-card {
  position: relative;
  min-height: 160px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(7, 31, 69, 0.05);
  text-align: center;
}

.top-card-number,
.top-specialized-card > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 12px 0 12px 0;
  color: #1265e8;
  background: #dcecff;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.top-problem-card .top-line-icon,
.top-feature-card .top-line-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 15px;
}

.top-problem-card h3,
.top-feature-card h3 {
  font-size: 0.98rem;
  line-height: 1.55;
}

.top-feature-card {
  min-height: 210px;
  padding-top: 30px;
}

.top-change-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.top-change-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(240px, 1fr);
  overflow: hidden;
  min-height: 208px;
  border: 1px solid rgba(13, 107, 232, 0.22);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 31, 69, 0.07);
}

.top-change-photo {
  position: relative;
  min-height: 208px;
  overflow: hidden;
  background: #eef2f7;
}

.top-change-card.is-after .top-change-photo {
  background: #edf7ff;
}

.top-change-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-change-photo span {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  min-width: 150px;
  padding: 8px 16px;
  color: #ffffff;
  background: #061f46;
  font-size: 0.78rem;
  font-weight: 900;
}

.top-change-card ul {
  display: grid;
  align-content: center;
  gap: 10px;
  margin: 0;
  padding: 24px 28px;
  list-style: none;
}

.top-change-card li {
  position: relative;
  padding-left: 24px;
  color: #203952;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.top-change-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 5px;
  border-left: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(-45deg);
}

.top-change-card.is-after li::before {
  border-color: #ff920f;
}

.top-change-arrow {
  width: 76px;
  height: 58px;
  background: linear-gradient(90deg, rgba(13, 107, 232, 0.2), #1265e8);
  clip-path: polygon(0 28%, 58% 28%, 58% 0, 100% 50%, 58% 100%, 58% 72%, 0 72%);
}

.top-specialized-card {
  min-height: 150px;
  padding: 30px 18px 20px;
  text-align: left;
}

.top-specialized-card h3 {
  font-size: 0.96rem;
}

.top-final-cta {
  padding: 28px 0 44px;
  background: #ffffff;
}

.top-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 126px;
  padding: 28px 58px;
  border: 1px solid rgba(13, 107, 232, 0.15);
  border-radius: 14px;
  background:
    radial-gradient(circle at 98% 10%, rgba(13, 107, 232, 0.12), transparent 130px),
    linear-gradient(135deg, #ecf6ff, #ffffff 58%, #f4f9ff);
}

.top-cta-panel::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  opacity: 0.5;
  background-image: radial-gradient(#1265e8 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}

.top-cta-panel h2 {
  margin: 0;
  color: #061f46;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.top-cta-panel p {
  margin: 8px 0 0;
  color: #203952;
  font-weight: 700;
}

.top-cta-actions {
  position: relative;
  z-index: 1;
  margin: 0;
}

.top-rebuild .site-footer {
  padding: 42px 0 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 20%, rgba(13, 107, 232, 0.24), transparent 340px),
    linear-gradient(135deg, #062858, #021b3a);
}

.top-rebuild .footer-grid {
  align-items: start;
}

.top-rebuild .footer-brand img {
  width: 156px;
  display: block;
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  filter: none;
}

.top-rebuild .footer-brand p,
.top-rebuild .footer-nav a,
.top-rebuild .footer-legal a,
.top-rebuild .footer-bottom {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1180px) {
  .top-hero-grid {
    grid-template-columns: minmax(340px, 0.95fr) minmax(460px, 1.05fr);
    gap: 34px;
  }

  .hero-float {
    width: 82px;
    min-height: 74px;
    font-size: 0.72rem;
  }

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

@media (max-width: 1040px) {
  .top-hero-grid {
    grid-template-columns: 1fr;
  }

  .top-hero-copy {
    text-align: center;
  }

  .top-hero p {
    margin-inline: auto;
  }

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

  .top-stat-row {
    max-width: none;
    margin-top: 0;
  }

  .top-about-grid {
    grid-template-columns: 1fr;
  }

  .top-change-grid {
    grid-template-columns: 1fr;
  }

  .top-change-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .top-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .top-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .top-rebuild .brand img {
    width: 128px;
  }

  .top-hero {
    padding: 36px 0 34px;
  }

  .top-hero h1 {
    margin-top: 22px;
    font-size: clamp(1.95rem, 8vw, 2.62rem);
    line-height: 1.32;
  }

  .top-hero p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .top-hero-actions,
  .top-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .top-button {
    width: 100%;
    min-width: 0;
  }

  .top-hero-visual {
    min-height: 310px;
    margin-top: 2px;
  }

  .hero-pc-mock {
    width: 94%;
  }

  .hero-phone-mock {
    right: -2%;
    bottom: 2%;
    width: min(155px, 39%);
  }

  .hero-float {
    display: none;
  }

  .top-stat-row,
  .top-problem-grid,
  .top-feature-grid,
  .top-specialized-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-stat-card {
    min-height: 78px;
    padding: 15px;
  }

  .top-stat-card:first-child {
    grid-column: 1 / -1;
  }

  .top-section {
    padding: 42px 0;
  }

  .top-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .top-about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .top-about-card .top-line-icon {
    margin-inline: auto;
  }

  .top-about-icon {
    margin-inline: auto;
  }

  .top-problem-card,
  .top-feature-card,
  .top-specialized-card {
    min-height: 178px;
    padding-inline: 14px;
  }

  .top-feature-card {
    min-height: 216px;
  }

  .top-change-card {
    grid-template-columns: 1fr;
  }

  .top-change-photo {
    min-height: 176px;
  }

  .top-change-card ul {
    padding: 22px;
  }

  .top-cta-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .top-stat-row,
  .top-problem-grid,
  .top-feature-grid,
  .top-specialized-grid {
    grid-template-columns: 1fr;
  }
}

/* Features rebuild */
.features-rebuild {
  color: #061f46;
  background: #ffffff;
}

.features-rebuild .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 43, 96, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.features-rebuild .brand img {
  width: 160px;
}

.features-rebuild .desktop-nav a {
  color: #071f45;
  font-weight: 800;
}

.features-rebuild .desktop-nav a::after {
  background: #1265e8;
}

.features-rebuild .header-cta {
  min-height: 42px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0e73f6, #0455d8);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(0, 86, 216, 0.2);
}

.features-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(38px, 5vw, 64px) 0 42px;
  background:
    linear-gradient(130deg, rgba(230, 243, 255, 0.92), rgba(255, 255, 255, 0.96) 46%, rgba(235, 246, 255, 0.98)),
    #f7fbff;
}

.features-hero::before,
.features-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.features-hero::before {
  inset: auto -8% -22% -8%;
  height: 230px;
  background:
    linear-gradient(145deg, rgba(13, 107, 232, 0.12), transparent 58%),
    linear-gradient(20deg, transparent 34%, rgba(13, 107, 232, 0.1) 35%, transparent 70%);
  clip-path: polygon(0 22%, 18% 36%, 42% 18%, 72% 42%, 100% 14%, 100% 100%, 0 100%);
}

.features-hero::after {
  top: -18%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 107, 232, 0.09), transparent 62%);
}

.features-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
}

.features-hero-copy {
  padding-top: 8px;
}

.features-hero h1 {
  margin: 0 0 22px;
  color: #061f46;
  font-size: clamp(2.55rem, 4.15vw, 4.2rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.features-hero h1 span {
  display: block;
  white-space: nowrap;
}

.features-hero h1 em {
  color: #ff920f;
  font-style: normal;
}

.features-hero p {
  max-width: 560px;
  margin: 0;
  color: #18324f;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  font-weight: 700;
  line-height: 2;
}

.features-hero-actions,
.features-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.features-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 220px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid rgba(13, 107, 232, 0.65);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.features-button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.features-button-download::after {
  content: "↓";
  width: auto;
  height: auto;
  border: 0;
  background: none;
  font-size: 1.15rem;
  line-height: 1;
  transform: none;
}

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

.features-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0e73f6, #0056df);
  box-shadow: 0 18px 38px rgba(0, 86, 216, 0.22);
}

.features-button-secondary {
  color: #0a5ee4;
  background: rgba(255, 255, 255, 0.84);
}

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

.features-hero-orbit {
  position: absolute;
  width: min(620px, 94%);
  aspect-ratio: 1 / 0.72;
  border: 1.5px dashed rgba(13, 107, 232, 0.44);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.features-hero-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1.5px dashed rgba(13, 107, 232, 0.24);
  border-radius: 50%;
  transform: rotate(15deg);
}

.features-pc-mock {
  position: relative;
  z-index: 2;
  width: min(680px, 92%);
  filter: drop-shadow(0 34px 42px rgba(7, 31, 69, 0.18));
}

.features-phone-mock {
  position: absolute;
  z-index: 3;
  right: calc(2% + 30px);
  bottom: calc(5% + 30px);
  width: min(282px, 40.8%);
  filter: drop-shadow(0 22px 34px rgba(7, 31, 69, 0.22));
}

.features-float {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 92px;
  min-height: 96px;
  padding: 10px 9px 12px;
  border: 1px solid rgba(13, 107, 232, 0.13);
  border-radius: 16px;
  color: #061f46;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(7, 31, 69, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.features-float img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 2px;
}

.features-float-01 { top: 2%; left: 12%; }
.features-float-02 { top: 4%; right: 5%; }
.features-float-03 { top: 31%; left: 3%; }
.features-float-04 { top: 31%; right: -2%; }
.features-float-05 { bottom: 22%; left: 7%; }
.features-float-06 { bottom: 19%; right: 2%; }
.features-float-07 { bottom: 0; left: 40%; }

.features-main-section,
.therapist-flow-section,
.features-improvement-section {
  padding: clamp(44px, 5.4vw, 72px) 0 0;
  background: #ffffff;
}

.features-main-section .container {
  width: min(1680px, calc(100% - 40px));
}

.features-section-heading {
  max-width: 860px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: center;
}

.features-section-heading h2 {
  margin: 0;
  color: #061f46;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.features-section-heading p {
  margin: 8px 0 0;
  color: #51657f;
  font-weight: 700;
}

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

.features-main-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(7, 31, 69, 0.06);
}

.features-card-copy {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
}

.features-card-copy svg,
.therapist-flow-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #1265e8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-card-copy svg {
  box-sizing: border-box;
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  padding: 14px;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(7, 31, 69, 0.06);
}

.features-card-copy h3 {
  margin: 2px 0 8px;
  color: #1265e8;
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  font-weight: 900;
  line-height: 1.45;
}

.features-card-copy p {
  grid-column: 2;
  margin: 0;
  color: #263d58;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.85;
}

.features-mini-ui {
  position: relative;
  min-height: 98px;
  border-radius: 8px;
  border: 1px solid rgba(13, 107, 232, 0.12);
  background: linear-gradient(135deg, #f4f9ff, #ffffff);
  box-shadow: 0 14px 28px rgba(7, 31, 69, 0.06);
}

.features-screen-image {
  display: block;
  width: 100%;
  align-self: end;
  margin-top: 26px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(13, 107, 232, 0.2);
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background: #f4f9ff;
  box-shadow: 0 18px 36px rgba(7, 31, 69, 0.08);
}

.features-mini-ui::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 42%;
  height: 7px;
  border-radius: 999px;
  background: #1265e8;
  opacity: 0.85;
}

.features-mini-ui span,
.features-mini-ui i,
.features-mini-ui b {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(18, 101, 232, 0.14);
}

.features-mini-ui.is-site span { left: 14px; top: 28px; width: 62%; height: 32px; background: #08244f; }
.features-mini-ui.is-site i { left: 14px; bottom: 14px; width: 72%; height: 8px; }
.features-mini-ui.is-site b:nth-of-type(1) { right: 14px; top: 29px; width: 22px; height: 22px; background: #ff920f; opacity: 0.8; }
.features-mini-ui.is-site b:nth-of-type(2) { right: 14px; bottom: 14px; width: 38px; height: 8px; }

.features-mini-ui.is-list span { left: 16px; right: 16px; height: 8px; }
.features-mini-ui.is-list span:nth-child(1) { top: 30px; }
.features-mini-ui.is-list span:nth-child(2) { top: 48px; }
.features-mini-ui.is-list span:nth-child(3) { top: 66px; }
.features-mini-ui.is-list span:nth-child(4) { top: 84px; }

.features-mini-ui.is-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 30px 14px 14px;
}

.features-mini-ui.is-calendar span {
  position: static;
  min-height: 18px;
  border-radius: 5px;
}

.features-mini-ui.is-calendar span:nth-child(5) {
  background: rgba(255, 146, 15, 0.38);
}

.features-mini-ui.is-status span { left: 14px; right: 14px; height: 9px; }
.features-mini-ui.is-status span:nth-child(1) { top: 30px; }
.features-mini-ui.is-status span:nth-child(2) { top: 49px; background: rgba(0, 161, 110, 0.18); }
.features-mini-ui.is-status span:nth-child(3) { top: 68px; background: rgba(255, 146, 15, 0.24); }
.features-mini-ui.is-status span:nth-child(4) { top: 87px; background: rgba(18, 101, 232, 0.14); }

.features-mini-ui.is-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 30px 12px 12px;
}

.features-mini-ui.is-gallery span {
  position: static;
  aspect-ratio: 1;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 40%, rgba(6, 31, 70, 0.48), transparent 19%),
    linear-gradient(135deg, rgba(18, 101, 232, 0.16), rgba(255, 146, 15, 0.18));
}

.therapist-flow-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.therapist-phone-panel {
  display: grid;
  place-items: center;
}

.therapist-phone-image {
  display: block;
  width: min(340px, 100%);
  height: auto;
  transform: translateX(96px);
  filter: drop-shadow(0 24px 34px rgba(7, 31, 69, 0.14));
}

.therapist-phone {
  width: 150px;
  min-height: 330px;
  padding: 28px 14px 18px;
  border: 5px solid #071f45;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 38px rgba(7, 31, 69, 0.13);
}

.therapist-phone-top {
  width: 58px;
  height: 7px;
  margin: -16px auto 18px;
  border-radius: 999px;
  background: #071f45;
}

.therapist-phone strong {
  display: block;
  margin-bottom: 14px;
  color: #061f46;
  font-size: 0.78rem;
}

.therapist-phone span {
  display: block;
  position: relative;
  padding: 10px 8px 10px 30px;
  border-bottom: 1px solid rgba(13, 107, 232, 0.12);
  color: #203952;
  font-size: 0.76rem;
  font-weight: 800;
}

.therapist-phone span::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid #1265e8;
  border-radius: 4px;
}

.therapist-flow-cards {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.therapist-flow-card {
  position: relative;
  min-height: 190px;
  padding: 28px 13px 18px;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 31, 69, 0.05);
  text-align: center;
}

.therapist-flow-card > span {
  position: absolute;
  top: 12px;
  left: 14px;
  color: #1265e8;
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.therapist-flow-card svg {
  width: 46px;
  height: 46px;
  margin: 10px auto 14px;
}

.therapist-flow-icon {
  display: block;
  width: 62px;
  height: 62px;
  margin: 6px auto 12px;
  object-fit: contain;
}

.therapist-flow-card h3 {
  margin: 0;
  color: #061f46;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.5;
}

.therapist-flow-card p {
  margin: 8px 0 0;
  color: #334861;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.7;
}

.features-improvement-panel {
  padding: 26px 28px 28px;
  border: 1px solid rgba(13, 107, 232, 0.16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 31, 69, 0.06);
}

.features-improvement-panel h2 {
  margin: 0 0 18px;
  color: #061f46;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 900;
  text-align: center;
}

.features-table-scroll {
  overflow-x: auto;
}

.features-improvement-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  color: #203952;
  font-size: 0.88rem;
  font-weight: 700;
}

.features-improvement-table th,
.features-improvement-table td {
  padding: 11px 14px;
  border: 1px solid rgba(13, 107, 232, 0.22);
  line-height: 1.55;
  vertical-align: top;
}

.features-improvement-table thead th {
  color: #061f46;
  background: #eaf4ff;
  font-weight: 900;
  text-align: center;
}

.features-improvement-table thead th:last-child {
  color: #ffffff;
  background: linear-gradient(135deg, #1265e8, #0056df);
}

.features-improvement-table tbody th {
  width: 150px;
  color: #061f46;
  background: #f5faff;
  font-weight: 900;
  text-align: center;
}

.features-improvement-table tbody td:last-child {
  color: #0a5ee4;
  font-weight: 900;
}

.features-final-cta {
  padding: 32px 0 44px;
  background: #ffffff;
}

.features-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 22px;
  min-height: 142px;
  padding: 32px 48px;
  border: 1px solid rgba(13, 107, 232, 0.15);
  border-radius: 14px;
  background:
    radial-gradient(circle at 98% 10%, rgba(13, 107, 232, 0.12), transparent 130px),
    linear-gradient(135deg, #ecf6ff, #ffffff 58%, #f4f9ff);
  text-align: center;
}

.features-cta-panel::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  opacity: 0.5;
  background-image: radial-gradient(#1265e8 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}

.features-cta-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #061f46;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.features-cta-actions {
  position: relative;
  z-index: 1;
  margin: 0;
}

.features-rebuild .site-footer {
  padding: 42px 0 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 20%, rgba(13, 107, 232, 0.24), transparent 340px),
    linear-gradient(135deg, #062858, #021b3a);
}

.features-rebuild .footer-grid {
  align-items: start;
}

.features-rebuild .footer-brand img {
  width: 156px;
  display: block;
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  filter: none;
}

.features-rebuild .footer-brand p,
.features-rebuild .footer-nav a,
.features-rebuild .footer-legal a,
.features-rebuild .footer-bottom {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1180px) {
  .features-hero-grid {
    grid-template-columns: minmax(340px, 0.95fr) minmax(460px, 1.05fr);
    gap: 34px;
  }

  .features-float {
    width: 82px;
    min-height: 86px;
    font-size: 0.72rem;
  }

  .features-float img {
    width: 48px;
    height: 48px;
  }

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

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

@media (max-width: 900px) {
  .features-hero-grid {
    grid-template-columns: 1fr;
  }

  .features-hero-copy {
    text-align: center;
  }

  .features-hero p {
    margin-inline: auto;
  }

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

  .features-hero-visual {
    min-height: 390px;
  }

  .features-float-04,
  .features-float-06 {
    right: 2%;
  }

  .therapist-flow-layout {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .therapist-phone-image {
    transform: none;
  }

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

@media (max-width: 760px) {
  .features-hero {
    padding-top: 28px;
  }

  .features-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .features-hero h1 span {
    white-space: normal;
  }

  .features-hero-actions,
  .features-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .features-button {
    width: 100%;
    min-width: 0;
  }

  .features-hero-visual {
    min-height: 330px;
    overflow: visible;
  }

  .features-pc-mock {
    width: min(520px, 94%);
  }

  .features-phone-mock {
    right: 7%;
    bottom: 18%;
    width: min(160px, 32%);
  }

  .features-float {
    display: none;
  }

  .features-main-grid {
    grid-template-columns: 1fr;
  }

  .features-main-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .features-card-copy {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
  }

  .features-card-copy svg {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .features-card-copy h3 {
    font-size: 1.08rem;
  }

  .features-card-copy p {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .features-screen-image {
    margin-top: 20px;
    border-radius: 12px;
  }

  .therapist-flow-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-improvement-panel {
    padding: 22px 16px;
  }

  .features-cta-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .features-main-card {
    grid-template-columns: 1fr;
  }

  .features-card-copy {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .features-card-copy svg {
    width: 52px;
    height: 52px;
  }

  .features-mini-ui {
    min-height: 112px;
  }

  .therapist-flow-cards {
    grid-template-columns: 1fr;
  }

  .therapist-flow-card {
    min-height: 150px;
  }
}

@media (max-width: 1180px) {
  .hp-production-page .hp-production-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hp-hero-visual {
    min-height: 420px;
  }

  .hp-hero-visual-collage {
    width: min(760px, 100%);
    margin-inline: auto;
  }

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

@media (max-width: 900px) {
  .hp-hero-proof-grid,
  .hp-before-after-grid,
  .hp-mira-impact,
  .hp-production-page .cta-panel {
    grid-template-columns: 1fr;
  }

  .hp-impact-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .hp-compare-card {
    grid-template-columns: 1fr;
  }

  .hp-compare-card img {
    max-height: 280px;
  }

  .hp-mira-impact {
    padding: 24px;
  }

  .hp-mira-impact-visual {
    min-height: 260px;
  }

  .hp-mira-impact-copy h3 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
}

@media (max-width: 760px) {
  .hp-production-page .hp-production-hero {
    padding-top: 38px;
  }

  .hp-production-page .hp-production-hero-full {
    padding: 0;
  }

  .hp-production-page .hp-production-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.22;
  }

  .hp-production-copy p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .hp-hero-proof-grid {
    gap: 10px;
  }

  .hp-hero-visual {
    min-height: 310px;
  }

  .hp-hero-visual-collage {
    min-height: 330px;
  }

  .hp-hero-mock-luxe {
    left: 9%;
    width: 58%;
  }

  .hp-hero-mock-nagomi {
    right: -7%;
    top: 23%;
    width: 48%;
  }

  .hp-hero-mock-mira {
    left: 0;
    top: 39%;
    width: 62%;
  }

  .hp-hero-mock-melt {
    right: 1%;
    bottom: 16%;
    width: 46%;
  }

  .hp-hero-mock-rouge {
    left: 8%;
    bottom: 2%;
    width: 50%;
  }

  .hp-design-taste-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-design-taste-grid div {
    min-height: 78px;
  }

  .hp-production-page .cta-panel .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
