:root {
  color-scheme: light;
  --ink: #101522;
  --muted: #5d6678;
  --subtle: #edf4ff;
  --line: #bfd2ea;
  --brand: #3d72b4;
  --brand-secondary: #5a92c8;
  --brand-accent: #6ba3d4;
  --logo-cyan: #5eccf5;
  --logo-purple: #5a55ae;
  --logo-pink: #fd7b8a;
  --brand-dark: #121620;
  --brand-navy: #090d19;
  --brand-soft: #edf4ff;
  --brand-soft-strong: #dce9f7;
  --warning: #f4a63a;
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(28, 56, 96, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 10% 4%, rgba(94, 204, 245, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(253, 123, 138, 0.16), transparent 31rem),
    radial-gradient(circle at 58% 0%, rgba(90, 85, 174, 0.13), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 42%, #ffffff 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 231, 245, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-points,
.hero-actions,
.logo-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 156px;
  height: auto;
}

.nav {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav-trigger:hover {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-trigger span {
  display: inline-block;
  margin-top: 2px;
  color: var(--brand);
  font-size: 12px;
  line-height: 1;
}

.nav-menu {
  position: fixed;
  top: 76px;
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(760px, calc(100vw - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(191, 210, 234, 0.9);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 204, 245, 0.14), transparent 13rem),
    radial-gradient(circle at 92% 14%, rgba(253, 123, 138, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(28, 56, 96, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
  backdrop-filter: blur(18px);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown:hover .nav-trigger span,
.nav-dropdown:focus-within .nav-trigger span {
  transform: none;
}

.nav-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--brand-dark);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: linear-gradient(135deg, rgba(237, 244, 255, 0.9), rgba(255, 243, 246, 0.82));
  transform: translateY(-1px);
}

.nav-menu strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.nav-menu small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  padding: 10px 16px;
  color: white;
  background: linear-gradient(135deg, var(--logo-purple), var(--brand), var(--logo-cyan));
  box-shadow: 0 14px 28px rgba(90, 85, 174, 0.22);
  font-size: 13px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--logo-purple), var(--brand), var(--logo-cyan));
  box-shadow: 0 16px 32px rgba(90, 85, 174, 0.24);
}

.button.secondary {
  color: var(--brand-dark);
  background: white;
  border: 1px solid var(--line);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding-top: 108px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.34;
  content: "";
  animation: heroGlow 9s ease-in-out infinite alternate;
}

.hero::before {
  top: 90px;
  left: -90px;
  background: radial-gradient(circle, rgba(94, 204, 245, 0.42), transparent 68%);
}

.hero::after {
  right: -80px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(253, 123, 138, 0.34), transparent 68%);
  animation-delay: -3s;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.9;
}

.hero-lead {
  max-width: 680px;
  font-size: 19px;
}

.hero-points {
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.hero-points span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 244, 255, 0.84));
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-motion-strip {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  margin-top: 22px;
  border: 1px solid rgba(191, 210, 234, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(61, 114, 180, 0.08);
}

.hero-motion-strip::before,
.hero-motion-strip::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 72px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.hero-motion-strip::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.hero-motion-strip::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.hero-motion-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 9px 12px;
  animation: signalMarquee 24s linear infinite;
}

.hero-motion-track span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edf8ff, #f5f3ff 58%, #fff1f4);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(220, 231, 245, 0.9);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
  animation: panelFloat 7s ease-in-out infinite;
}

.hero-panel::before {
  position: absolute;
  inset: -80px -90px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(94, 204, 245, 0.22), rgba(253, 123, 138, 0.16));
  content: "";
}

.panel-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.panel-top strong {
  color: var(--ink);
}

.hero-ai-orbit {
  position: relative;
  display: block;
  min-height: 118px;
  margin-bottom: 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(191, 210, 234, 0.7);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 204, 245, 0.22), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(90, 85, 174, 0.12), transparent 12rem),
    radial-gradient(circle at 88% 78%, rgba(253, 123, 138, 0.14), transparent 12rem),
    linear-gradient(135deg, rgba(237, 244, 255, 0.72), rgba(255, 242, 245, 0.72));
}

.ai-flow-diagram {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.flow-line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.4;
  stroke-dasharray: 7 8;
  stroke-linecap: round;
  opacity: 0.5;
  animation: flowDash 2.8s linear infinite;
}

.flow-line:nth-of-type(2) {
  animation-delay: -0.7s;
}

.flow-line:nth-of-type(3) {
  animation-delay: -1.4s;
}

.flow-line:nth-of-type(4) {
  animation-delay: -2.1s;
}

.flow-node rect {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(191, 210, 234, 0.9);
  filter: drop-shadow(0 10px 18px rgba(61, 114, 180, 0.08));
}

.flow-node text {
  fill: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.flow-ai rect {
  fill: url("#aiFlowGradient");
  filter: drop-shadow(0 18px 28px rgba(90, 85, 174, 0.25));
}

.flow-ai text {
  fill: white;
  font-weight: 900;
}

.flow-ai text:first-of-type {
  font-size: 15px;
}

.flow-ai text:last-of-type {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.score-grid,
.hero-impact {
  position: relative;
  display: grid;
  gap: 12px;
}

.score-grid article,
.hero-impact article,
.workflow-card,
.problem-grid article,
.feature-grid article,
.compare-grid article,
.price-card,
.signal-board div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 32px rgba(35, 58, 90, 0.07);
}

.score-grid article {
  padding: 18px;
}

.hero-impact article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 20px;
  border-color: rgba(191, 210, 234, 0.9);
  background: rgba(255, 255, 255, 0.86);
}

.hero-impact article span {
  grid-row: span 2;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(94, 204, 245, 0.18), rgba(253, 123, 138, 0.16));
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.hero-impact article strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.hero-impact article p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.score-grid strong {
  display: block;
  margin: 12px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.score-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.tag.high {
  color: #b83259;
  background: #fff0f3;
}

.tag.warn {
  color: #5a55ae;
  background: #f1f0ff;
}

.tag.good {
  color: #245f91;
  background: #e8f8ff;
}

.workflow-card {
  position: relative;
  margin-top: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(94, 204, 245, 0.13), rgba(90, 85, 174, 0.1), rgba(253, 123, 138, 0.1));
}

.workflow-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.workflow-card p {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.workflow-card::after {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-purple), var(--brand), var(--logo-cyan), var(--logo-pink), var(--logo-purple));
  background-size: 220% 100%;
  content: "";
  animation: workflowFlow 4s linear infinite;
}

.logo-strip {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
}

.logo-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3fbff, #f7f5ff);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem-grid,
.solution-map-grid,
.value-props,
.feature-grid,
.compare-grid {
  display: grid;
  gap: 18px;
}

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

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

.problem {
  padding-bottom: 48px;
}

.solution-map {
  padding-top: 22px;
}

.problem .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem-grid article,
.solution-map-grid article,
.value-props article,
.feature-grid article,
.feature-card,
.compare-grid article,
.faq-list details {
  padding: 26px;
}

.value-props {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
}

.value-props article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, #ffffff, #f3fbff 54%, #fff7fa);
  box-shadow: 0 10px 32px rgba(35, 58, 90, 0.07);
}

.problem-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 210, 234, 0.82);
  border-radius: 26px;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(90, 85, 174, 0.28), rgba(94, 204, 245, 0.24), rgba(253, 123, 138, 0.2)) border-box;
  box-shadow: 0 16px 40px rgba(35, 58, 90, 0.08);
}

.problem-grid article::before {
  position: absolute;
  top: -48px;
  right: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 204, 245, 0.22), transparent 68%);
  content: "";
}

.problem-grid article span,
.problem-grid article h3,
.problem-grid article p,
.problem-grid article strong {
  position: relative;
}

.problem-grid article span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(90, 85, 174, 0.1), rgba(94, 204, 245, 0.13));
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.problem-grid article h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.45;
}

.problem-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.problem-grid article strong {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(191, 210, 234, 0.72);
  color: var(--brand);
  font-size: 14px;
  line-height: 1.7;
}

.solution-map-grid article {
  border: 1px solid rgba(191, 210, 234, 0.86);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(94, 204, 245, 0.18), transparent 8rem),
    radial-gradient(circle at 88% 0%, rgba(253, 123, 138, 0.14), transparent 9rem),
    linear-gradient(160deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 46px rgba(61, 114, 180, 0.09);
}

.solution-map-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-map-grid h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.solution-map-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-map-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.solution-map-grid li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--logo-purple), var(--logo-cyan));
  content: "";
}

.value-props span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-props p {
  margin-bottom: 0;
  font-size: 14px;
}

.features {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 14% 12%, rgba(94, 204, 245, 0.42), transparent 26rem),
    radial-gradient(circle at 86% 8%, rgba(253, 123, 138, 0.36), transparent 24rem),
    radial-gradient(circle at 55% 72%, rgba(90, 85, 174, 0.32), transparent 30rem),
    linear-gradient(135deg, #f7fbff 0%, #edf4ff 34%, #f7f4ff 68%, #fff3f6 100%);
  color: var(--brand-dark);
}

.features p,
.features li {
  color: #4f5f77;
}

.features .eyebrow {
  color: var(--brand);
}

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

.feature-grid article,
.feature-card {
  border-color: rgba(191, 210, 234, 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(61, 114, 180, 0.1);
  backdrop-filter: blur(14px);
}

.feature-card {
  display: block;
  color: inherit;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 118px;
  margin: -8px -8px 22px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 204, 245, 0.28), transparent 8rem),
    radial-gradient(circle at 84% 22%, rgba(253, 123, 138, 0.22), transparent 8rem),
    linear-gradient(135deg, #ffffff, #edf4ff 52%, #fff3f6);
  box-shadow: inset 0 0 0 1px rgba(191, 210, 234, 0.7);
}

.feature-visual::before {
  position: absolute;
  inset: auto 22px 18px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(61, 114, 180, 0.14), transparent);
  content: "";
}

.feature-visual svg {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 18px rgba(61, 114, 180, 0.16));
}

.feature-visual svg circle,
.feature-visual svg rect,
.feature-visual svg path {
  vector-effect: non-scaling-stroke;
}

.visual-hr svg,
.visual-org svg,
.visual-eval svg {
  color: var(--logo-purple);
}

.visual-it svg,
.visual-pulse svg,
.visual-docs svg {
  color: var(--brand);
}

.visual-culture svg,
.visual-feedback svg {
  color: var(--logo-pink);
}

.feature-visual span {
  position: absolute;
  display: block;
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(61, 114, 180, 0.14);
}

.visual-hr span:nth-child(1) {
  top: 26px;
  left: 34px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-purple), var(--logo-cyan));
}

.visual-hr span:nth-child(2) {
  top: 30px;
  left: 108px;
  width: 122px;
  height: 16px;
}

.visual-hr span:nth-child(3) {
  top: 62px;
  left: 108px;
  width: 82px;
  height: 16px;
  background: #edf4ff;
}

.visual-org span {
  width: 42px;
  height: 34px;
}

.visual-org span:nth-child(1) {
  top: 18px;
  left: 112px;
  background: linear-gradient(135deg, var(--brand), var(--logo-cyan));
}

.visual-org span:nth-child(2) {
  top: 68px;
  left: 48px;
}

.visual-org span:nth-child(3) {
  top: 68px;
  left: 112px;
}

.visual-org span:nth-child(4) {
  top: 68px;
  left: 176px;
}

.visual-it span:nth-child(1) {
  top: 30px;
  left: 42px;
  width: 158px;
  height: 54px;
}

.visual-it span:nth-child(2) {
  top: 42px;
  left: 62px;
  width: 54px;
  height: 30px;
  background: linear-gradient(135deg, var(--logo-purple), var(--brand));
}

.visual-it span:nth-child(3) {
  top: 42px;
  right: 42px;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: #e8f8ff;
}

.visual-eval span {
  bottom: 28px;
  width: 30px;
  border-radius: 999px 999px 10px 10px;
}

.visual-eval span:nth-child(1) {
  left: 70px;
  height: 42px;
  background: var(--logo-cyan);
}

.visual-eval span:nth-child(2) {
  left: 116px;
  height: 68px;
  background: var(--brand);
}

.visual-eval span:nth-child(3) {
  left: 162px;
  height: 52px;
  background: var(--logo-pink);
}

.visual-pulse span:nth-child(1) {
  top: 34px;
  left: 46px;
  width: 150px;
  height: 50px;
  border-radius: 999px;
}

.visual-pulse span:nth-child(2) {
  top: 48px;
  left: 66px;
  width: 76px;
  height: 10px;
  background: #dce9f7;
}

.visual-pulse span:nth-child(3) {
  top: 38px;
  right: 48px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-purple), var(--logo-cyan));
}

.visual-culture span {
  border-radius: 50%;
}

.visual-culture span:nth-child(1) {
  top: 34px;
  left: 66px;
  width: 42px;
  height: 42px;
  background: var(--logo-pink);
}

.visual-culture span:nth-child(2) {
  top: 24px;
  left: 122px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--logo-purple), var(--brand));
}

.visual-culture span:nth-child(3) {
  top: 54px;
  left: 184px;
  width: 34px;
  height: 34px;
  background: var(--logo-cyan);
}

.visual-feedback span:nth-child(1) {
  top: 24px;
  left: 44px;
  width: 170px;
  height: 34px;
  border-radius: 18px 18px 18px 6px;
}

.visual-feedback span:nth-child(2) {
  top: 66px;
  left: 74px;
  width: 132px;
  height: 28px;
  border-radius: 16px 16px 6px 16px;
  background: #edf4ff;
}

.visual-feedback span:nth-child(3) {
  top: 32px;
  right: 46px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-pink), var(--logo-purple));
}

.visual-docs span:nth-child(1) {
  top: 22px;
  left: 70px;
  width: 120px;
  height: 74px;
  border-radius: 12px;
}

.visual-docs span:nth-child(2) {
  top: 38px;
  left: 92px;
  width: 76px;
  height: 8px;
  background: #dce9f7;
}

.visual-docs span:nth-child(3) {
  top: 56px;
  left: 92px;
  width: 52px;
  height: 8px;
  background: var(--logo-cyan);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 204, 245, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(90, 85, 174, 0.16);
}

.feature-grid ul,
.compare-grid ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-grid li,
.compare-grid li {
  margin-top: 10px;
  line-height: 1.6;
}

.feature-grid li::before,
.compare-grid li::before {
  margin-right: 8px;
  color: var(--logo-pink);
  content: "•";
}

.multilingual {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: center;
}

.multilingual-copy {
  max-width: 640px;
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.language-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(94, 204, 245, 0.28);
  border-radius: 999px;
  background: #edf4ff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.multilingual-shot {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 12%, rgba(94, 204, 245, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 16%, rgba(253, 123, 138, 0.14), transparent 18rem),
    #ffffff;
  box-shadow: 0 24px 60px rgba(61, 114, 180, 0.14);
}

.multilingual-shot img {
  width: min(100%, 520px);
  height: auto;
  max-height: 620px;
  border: 1px solid rgba(191, 210, 234, 0.8);
  border-radius: 24px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 18px 44px rgba(35, 58, 90, 0.12);
}

.multilingual-shot figcaption {
  width: 100%;
  margin-top: 16px;
  padding: 0;
  text-align: center;
}

.co-creation {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 18% 20%, rgba(94, 204, 245, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(253, 123, 138, 0.18), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.co-creation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.co-creation-copy {
  max-width: 560px;
}

.co-creation-copy h2 {
  max-width: 560px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
}

.co-creation-copy > p {
  margin-bottom: 28px;
}

.co-creation-shot {
  padding: 14px;
}

.co-creation-shot img {
  width: 100%;
  height: auto;
  max-height: 420px;
  border-radius: 20px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 16px 38px rgba(35, 58, 90, 0.12);
}

.co-creation-shot figcaption {
  padding: 14px 6px 2px;
  line-height: 1.6;
}

.co-creation-cards {
  display: grid;
  gap: 12px;
}

.co-creation-cards article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(35, 58, 90, 0.08);
}

.co-creation-cards span {
  grid-row: span 2;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 0;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.co-creation-cards h3 {
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 1.35;
}

.co-creation-cards p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
}

.pricing-copy {
  max-width: 680px;
}

.price-card {
  padding: 30px;
  background: linear-gradient(160deg, #ffffff, #eff9ff 48%, #fff2f5);
}

.price-card strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 42px;
  letter-spacing: -0.05em;
}

.free-label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.retention {
  padding-top: 40px;
}

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

.signal-board div {
  padding: 22px;
}

.signal-board span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.signal-board strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

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

.compare-grid .highlight {
  border-color: rgba(90, 85, 174, 0.28);
  background: linear-gradient(135deg, #eff9ff, #f5f3ff 48%, #fff2f5);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  position: relative;
  width: min(1000px, calc(100% - 40px));
  margin: 40px auto 96px;
  padding: 64px 30px;
  overflow: hidden;
  border: 1px solid rgba(191, 210, 234, 0.92);
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 18%, rgba(94, 204, 245, 0.42), transparent 20rem),
    radial-gradient(circle at 84% 12%, rgba(253, 123, 138, 0.3), transparent 20rem),
    radial-gradient(circle at 52% 94%, rgba(90, 85, 174, 0.24), transparent 24rem),
    linear-gradient(135deg, #f7fbff 0%, #edf4ff 34%, #f7f4ff 68%, #fff3f6 100%);
  color: var(--brand-dark);
  text-align: center;
  box-shadow: 0 28px 80px rgba(61, 114, 180, 0.16);
}

.final-cta::before {
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.58), transparent 18rem);
  content: "";
  pointer-events: none;
}

.final-cta > * {
  position: relative;
}

.final-cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  color: var(--brand);
}

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

.final-cta .button.primary {
  background: linear-gradient(135deg, var(--logo-cyan), var(--brand), var(--logo-purple));
  box-shadow: 0 16px 36px rgba(9, 13, 25, 0.18);
}

.final-cta .button.secondary {
  border-color: rgba(191, 210, 234, 0.9);
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(61, 114, 180, 0.12);
}

/* ── Pricing page ── */

.pricing-page {
  overflow: hidden;
}

.pricing-hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 36px;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(44px, 6vw, 76px);
}

.pricing-hero .hero-lead {
  max-width: 940px;
  margin-inline: auto;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.pricing-campaign,
.pricing-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.pricing-campaign {
  display: grid;
  grid-template-columns: max-content minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 76px;
  padding: 22px 26px;
  border: 1px solid rgba(191, 210, 234, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(94, 204, 245, 0.22), transparent 14rem),
    radial-gradient(circle at 88% 12%, rgba(253, 123, 138, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(61, 114, 180, 0.12);
}

.pricing-campaign span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--logo-purple), var(--brand), var(--logo-cyan));
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.pricing-campaign strong {
  color: var(--brand-dark);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.05em;
}

.pricing-campaign p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.pricing-section {
  padding: 34px 0 92px;
}

.pricing-section .section-heading {
  margin-bottom: 34px;
}

.pricing-plans,
.module-price-grid,
.pricing-start-flow {
  display: grid;
  gap: 16px;
}

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

.pricing-plan,
.module-price-grid article,
.tool-comparison article,
.pricing-start-flow article {
  border: 1px solid rgba(191, 210, 234, 0.88);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(35, 58, 90, 0.08);
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  border-radius: 30px;
}

.pricing-plan.featured {
  position: relative;
  border-color: rgba(90, 85, 174, 0.34);
  background:
    radial-gradient(circle at 10% 12%, rgba(94, 204, 245, 0.18), transparent 11rem),
    radial-gradient(circle at 92% 4%, rgba(253, 123, 138, 0.14), transparent 12rem),
    linear-gradient(145deg, #ffffff, #eff9ff 48%, #fff4f7);
  box-shadow: 0 24px 70px rgba(90, 85, 174, 0.16);
}

.pricing-plan > span,
.module-price-grid article > span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(237, 244, 255, 0.9);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.pricing-plan h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.pricing-plan strong {
  display: block;
  margin: 6px 0 14px;
  color: var(--brand-dark);
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.07em;
}

.pricing-plan strong small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.pricing-plan p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.pricing-plan ul {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.pricing-plan li,
.tool-comparison li {
  position: relative;
  padding-left: 22px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.pricing-plan li::before,
.tool-comparison li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--logo-cyan));
  content: "";
}

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

.module-price-grid article {
  display: grid;
  min-height: 220px;
  padding: 24px;
  border-radius: 26px;
}

.module-price-grid article strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.4;
}

.module-price-grid article small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.module-price-grid article b {
  align-self: end;
  margin-top: 20px;
  color: var(--brand);
  font-size: 34px;
  letter-spacing: -0.06em;
}

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

.tool-comparison article {
  padding: 30px;
  border-radius: 32px;
}

.tool-comparison article.highlight {
  border-color: rgba(90, 85, 174, 0.32);
  background:
    radial-gradient(circle at 12% 12%, rgba(94, 204, 245, 0.2), transparent 13rem),
    radial-gradient(circle at 88% 10%, rgba(253, 123, 138, 0.16), transparent 13rem),
    linear-gradient(145deg, #f8fbff, #f5f3ff 58%, #fff4f7);
}

.tool-comparison h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.tool-comparison ul {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.tool-comparison article:not(.highlight) li::before {
  background: #c9d6e6;
}

.tool-comparison p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.cost-simulation {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.cost-stack,
.cost-result {
  border: 1px solid rgba(191, 210, 234, 0.88);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(35, 58, 90, 0.08);
}

.cost-stack {
  padding: 30px;
}

.cost-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-color: rgba(90, 85, 174, 0.32);
  background:
    radial-gradient(circle at 12% 12%, rgba(94, 204, 245, 0.22), transparent 13rem),
    radial-gradient(circle at 90% 8%, rgba(253, 123, 138, 0.16), transparent 14rem),
    linear-gradient(145deg, #f8fbff, #f5f3ff 58%, #fff4f7);
}

.cost-stack > span,
.cost-result > span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(237, 244, 255, 0.92);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.cost-stack h3,
.cost-result h3 {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.07em;
}

.cost-stack h3 small,
.cost-result h3 small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.cost-stack-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.cost-stack-list div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.cost-stack-list strong {
  display: inline-grid;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.cost-stack-list small {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.cost-stack-list b {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.cost-stack p,
.cost-result p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.cost-result strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.07em;
}

.cost-result-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.cost-result-badges span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.pricing-start-flow article {
  padding: 26px;
  border-radius: 28px;
}

.pricing-start-flow span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(94, 204, 245, 0.2), rgba(253, 123, 138, 0.16));
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.pricing-start-flow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
}

.pricing-start-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.pricing-faq {
  padding-bottom: 52px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
  padding-top: 0;
}

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

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 14px 16px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--logo-cyan);
  box-shadow: 0 0 0 4px rgba(94, 204, 245, 0.18);
}

.contact-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.contact-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-status.success {
  color: #16815a;
}

.contact-status.error {
  color: #c2414b;
}

.page-main {
  min-height: 100vh;
}

.feature-detail-hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 54px;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.feature-detail-hero h1 {
  max-width: 1200px;
  margin-inline: auto;
  font-size: clamp(42px, 6vw, 72px);
}

.feature-detail-hero .hero-lead {
  max-width: 960px;
  margin-inline: auto;
}

.feature-screenshot-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.feature-screenshot-section.screenshot-story-section {
  width: min(1240px, calc(100% - 40px));
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.feature-screenshot-section .section-heading.narrow {
  max-width: 460px;
  margin: 0;
  text-align: left;
}

.screenshot-story-section .section-heading.narrow {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.feature-screenshot-section .section-heading h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}

.feature-screenshot-section .section-heading p {
  margin-bottom: 0;
}

.screenshot-section-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.screenshot-story-section .screenshot-section-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.screenshot-section-points article {
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid rgba(191, 210, 234, 0.82);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(253, 123, 138, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(61, 114, 180, 0.07);
}

.screenshot-section-points span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(94, 204, 245, 0.16), rgba(253, 123, 138, 0.12));
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.screenshot-section-points strong {
  display: block;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.55;
}

.screenshot-section-points p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.feature-screenshot-section .screenshot-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(28, 56, 96, 0.12);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  background: #f8fbff;
}

.screenshot-card-wide img {
  object-position: top center;
}

.feature-screenshot-section .screenshot-card-wide,
.feature-screenshot-section .screenshot-card-full,
.feature-screenshot-section .screenshot-showcase-single .screenshot-card {
  grid-column: 1 / -1;
}

.feature-screenshot-section .screenshot-card img {
  height: 220px;
}

.feature-screenshot-section .screenshot-card-wide img,
.feature-screenshot-section .screenshot-card-full img,
.feature-screenshot-section .screenshot-showcase-single .screenshot-card img {
  height: 360px;
}

.screenshot-card-full {
  grid-column: 1 / -1;
}

.screenshot-card-full img {
  height: 420px;
  object-position: top center;
}

.feature-screenshot-section .screenshot-card-wide img,
.feature-screenshot-section .screenshot-card-full img,
.feature-screenshot-section .screenshot-showcase-single .screenshot-card img {
  height: 360px;
}

.screenshot-showcase-single {
  grid-template-columns: 1fr;
}

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

.screenshot-story-section .screenshot-pair-list {
  gap: 24px;
}

.screenshot-pair {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(191, 210, 234, 0.86);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 204, 245, 0.14), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.92));
  box-shadow: 0 18px 46px rgba(61, 114, 180, 0.08);
}

.screenshot-pair > div span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screenshot-pair h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.screenshot-pair p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.screenshot-pair .screenshot-card {
  box-shadow: 0 14px 34px rgba(28, 56, 96, 0.1);
}

.screenshot-pair-media-first {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.screenshot-story-section .screenshot-pair {
  min-height: 360px;
  padding: 24px;
}

.screenshot-story-section .screenshot-pair:nth-child(even) .screenshot-card {
  order: 2;
}

.screenshot-story-section .screenshot-pair:nth-child(even) > div {
  order: 1;
}

.feature-screenshot-section .screenshot-pair .screenshot-card img {
  height: 250px;
  object-fit: contain;
  object-position: top center;
}

.screenshot-story-section .screenshot-pair .screenshot-card img {
  height: 300px;
}

.screenshot-card-mock {
  display: grid;
  min-height: 360px;
  align-content: stretch;
}

.screenshot-card-mock > div {
  display: grid;
  min-height: 300px;
  padding: 28px;
  background:
    radial-gradient(circle at 14% 16%, rgba(94, 204, 245, 0.24), transparent 10rem),
    radial-gradient(circle at 86% 8%, rgba(253, 123, 138, 0.18), transparent 11rem),
    linear-gradient(135deg, #f7fbff, #fff3f6);
}

.mock-checklist,
.mock-document,
.mock-health,
.mock-praise,
.mock-ranking,
.mock-status {
  gap: 12px;
}

.mock-checklist span,
.mock-praise span,
.mock-status span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(61, 114, 180, 0.08);
}

.mock-checklist {
  align-content: center;
  justify-content: center;
  grid-template-columns: repeat(2, max-content);
}

.mock-checklist span:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  background: linear-gradient(135deg, var(--logo-purple), var(--brand));
  color: white;
}

.mock-document {
  align-content: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.mock-document span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mock-document strong {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(61, 114, 180, 0.08);
}

.mock-health,
.mock-ranking {
  align-content: center;
}

.mock-health strong,
.mock-praise strong,
.mock-ranking strong {
  color: var(--brand-dark);
  font-size: 22px;
}

.mock-health span,
.mock-ranking span {
  display: block;
  position: relative;
  overflow: hidden;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 36px;
  padding-left: 16px;
}

.mock-health span::before,
.mock-ranking span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(94, 204, 245, 0.34), rgba(90, 85, 174, 0.22));
  content: "";
}

.mock-ranking span {
  padding-left: 18px;
}

.mock-praise {
  align-content: center;
  justify-items: center;
}

.mock-praise strong {
  margin-bottom: 6px;
}

.mock-praise span:nth-child(2) {
  background: linear-gradient(135deg, rgba(253, 123, 138, 0.22), rgba(255, 255, 255, 0.9));
}

.mock-praise span:nth-child(3) {
  background: linear-gradient(135deg, rgba(90, 85, 174, 0.2), rgba(255, 255, 255, 0.9));
}

.mock-praise span:nth-child(4) {
  background: linear-gradient(135deg, rgba(94, 204, 245, 0.24), rgba(255, 255, 255, 0.9));
}

.mock-status {
  align-content: center;
  justify-content: center;
  grid-template-columns: repeat(3, max-content);
}

.mock-status span:nth-child(1) {
  color: #5a55ae;
}

.mock-status span:nth-child(2) {
  color: #3d72b4;
}

.mock-status span:nth-child(3) {
  color: #16815a;
}

.dashboard-motion-card {
  background:
    radial-gradient(circle at 18% 8%, rgba(94, 204, 245, 0.2), transparent 12rem),
    radial-gradient(circle at 86% 12%, rgba(253, 123, 138, 0.16), transparent 12rem),
    linear-gradient(145deg, #ffffff, #f7fbff 58%, #fff6f8);
}

.dashboard-motion {
  display: grid;
  min-height: 300px;
  gap: 14px;
  padding: 22px;
  opacity: 0;
  transform: translateY(18px);
  animation: dashboardReveal 0.8s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 12% cover 34%;
}

.dashboard-motion-header,
.dashboard-motion-kpis,
.dashboard-motion-grid {
  opacity: 0;
  transform: translateY(12px);
  animation: dashboardItemIn 0.72s ease-out forwards;
}

.dashboard-motion-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  animation-delay: 0.08s;
}

.dashboard-motion-header strong {
  color: var(--brand-dark);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.dashboard-motion-header span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(237, 244, 255, 0.86);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
}

.dashboard-motion-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  animation-delay: 0.18s;
}

.dashboard-motion-kpis span {
  padding: 12px;
  border: 1px solid rgba(191, 210, 234, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(61, 114, 180, 0.08);
}

.dashboard-motion-kpis small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.dashboard-motion-kpis b {
  color: var(--brand-dark);
  font-size: 15px;
}

.dashboard-motion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  align-items: center;
  animation-delay: 0.28s;
}

.dashboard-motion-donut {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.dashboard-motion-donut i {
  display: block;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 38%, transparent 39%),
    conic-gradient(var(--brand) 0 72%, var(--logo-purple) 72% 82%, var(--logo-pink) 82% 91%, var(--logo-cyan) 91% 100%);
  box-shadow: 0 14px 30px rgba(61, 114, 180, 0.18);
  transform: scale(0.82) rotate(-28deg);
  animation: dashboardDonutIn 0.9s ease-out 0.38s forwards;
}

.dashboard-motion-donut ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-motion-donut li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.dashboard-motion-donut li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.dashboard-motion-donut li:nth-child(2) span {
  background: var(--logo-purple);
}

.dashboard-motion-donut li:nth-child(3) span {
  background: var(--logo-cyan);
}

.dashboard-motion-donut li b {
  color: var(--brand-dark);
}

.dashboard-motion-bars {
  display: grid;
  gap: 10px;
}

.dashboard-motion-bars span {
  display: block;
  width: 0;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-purple), var(--brand), var(--logo-cyan));
  box-shadow: 0 8px 18px rgba(90, 85, 174, 0.13);
  animation: dashboardBarGrow 0.82s cubic-bezier(0.2, 0.9, 0.25, 1) forwards;
  animation-delay: 0.42s;
}

.dashboard-motion-bars span:nth-child(2) {
  background: linear-gradient(90deg, var(--brand), var(--logo-cyan));
  animation-delay: 0.5s;
}

.dashboard-motion-bars span:nth-child(3) {
  background: linear-gradient(90deg, var(--logo-pink), var(--logo-purple));
  animation-delay: 0.58s;
}

.dashboard-motion-bars span:nth-child(4) {
  background: linear-gradient(90deg, var(--logo-cyan), var(--brand-secondary));
  animation-delay: 0.66s;
}

.dashboard-motion-bars span:nth-child(5) {
  background: linear-gradient(90deg, var(--brand-secondary), var(--logo-purple));
  animation-delay: 0.74s;
}

.screenshot-card figcaption {
  padding: 16px 20px 18px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.feature-detail-grid {
  display: grid;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 96px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.feature-detail-grid > div {
  display: contents;
}

.detail-card,
.detail-side-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(28, 56, 96, 0.1);
}

.detail-card {
  padding: 28px;
}

.detail-card + .detail-card {
  margin-top: 0;
}

.feature-detail-grid > div .detail-card:first-child {
  grid-column: 1;
  grid-row: 1;
}

.feature-detail-grid > div .detail-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.detail-card h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

.detail-card p {
  font-size: 14px;
  line-height: 1.8;
}

.detail-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.detail-list li::before {
  margin-right: 8px;
  color: var(--logo-pink);
  content: "•";
}

.detail-side-card {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.62fr);
  gap: 36px;
  align-items: center;
  justify-content: stretch;
  padding: 38px;
  text-align: left;
  background:
    radial-gradient(circle at 12% 20%, rgba(94, 204, 245, 0.22), transparent 16rem),
    radial-gradient(circle at 88% 10%, rgba(253, 123, 138, 0.18), transparent 15rem),
    linear-gradient(135deg, #ffffff, #eff9ff 48%, #fff2f5);
}

.detail-side-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.04em;
}

.detail-side-copy {
  min-width: 0;
}

.detail-side-card p {
  max-width: 660px;
}

.detail-side-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 560px);
  margin-top: 18px;
}

.detail-side-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(191, 210, 234, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.detail-side-highlights span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(237, 244, 255, 0.9), rgba(255, 244, 247, 0.88));
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}


/* ── Retention page mockups ── */

.retention-timeline-mock {
  position: relative;
  align-content: center;
  min-height: 300px;
  padding: 30px 28px 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(94, 204, 245, 0.16), transparent 9rem),
    radial-gradient(circle at 86% 18%, rgba(253, 123, 138, 0.12), transparent 10rem),
    linear-gradient(135deg, #f8fbff, #fff7f8);
}

.retention-timeline-mock::before {
  content: "退職までの変化";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(191, 210, 234, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.retention-timeline-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.retention-timeline-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(92, 147, 204, 0.18), rgba(232, 168, 76, 0.24), rgba(212, 68, 68, 0.2));
}

.retention-phase {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 94px;
  align-content: center;
  padding: 16px 14px;
  border: 1px solid rgba(191, 210, 234, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(35, 58, 90, 0.08);
  text-align: left;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
  color: var(--brand-dark);
}

.retention-phase b,
.retention-phase small {
  display: block;
}

.retention-phase b {
  font-size: 13px;
  font-weight: 900;
}

.retention-phase small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.retention-phase::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-bottom: 10px;
  border-radius: 999px;
}

.retention-phase-silent {
  border-color: rgba(107, 140, 206, 0.24);
}

.retention-phase-visible {
  border-color: rgba(232, 168, 76, 0.28);
}

.retention-phase-late {
  border-color: rgba(212, 68, 68, 0.26);
}

.retention-phase-silent::before {
  background: #6b8cce;
}

.retention-phase-visible::before {
  background: #e8a84c;
}

.retention-phase-late::before {
  background: #d44;
}

.retention-timeline-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 4px 0;
  font-size: 11px;
  color: var(--muted);
}

.retention-timeline-labels small:nth-child(2) {
  text-align: center;
}

.retention-timeline-labels small:nth-child(3) {
  text-align: right;
}

.retention-signals-mock {
  padding: 24px;
}

.retention-signals-mock > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
}

.retention-signals-mock ul {
  display: grid;
  gap: 12px;
}

.retention-signals-mock li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.signal-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}

.signal-survey { background: linear-gradient(135deg, #6b8cce, #5a55ae); }
.signal-activity { background: linear-gradient(135deg, #52b4d6, #3a8fc2); }
.signal-sns { background: linear-gradient(135deg, #d67bb5, #b85ca0); }
.signal-org { background: linear-gradient(135deg, #7bc6a4, #4ba882); }

.retention-signals-mock li b {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.retention-signals-mock li small {
  color: var(--muted);
  font-size: 12px;
}

.retention-prepare-mock {
  padding: 24px;
}

.retention-prepare-mock > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
}

.prepare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.prepare-grid > div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.prepare-grid b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.prepare-grid small {
  color: var(--muted);
  font-size: 12px;
}

.retention-ai-mock {
  padding: 24px;
}

.ai-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ai-mock-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--logo-purple));
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.ai-mock-header strong {
  font-size: 15px;
}

.ai-mock-cards {
  display: grid;
  gap: 10px;
}

.ai-mock-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.ai-mock-card > span {
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  color: white;
}

.ai-mock-high > span { background: linear-gradient(135deg, #e87676, #d44); }
.ai-mock-medium > span { background: linear-gradient(135deg, #f0c876, #e8a84c); }
.ai-mock-low > span { background: linear-gradient(135deg, #7bc6a4, #4ba882); }

.ai-mock-card b {
  font-size: 14px;
  font-weight: 800;
}

.ai-mock-card small {
  color: var(--muted);
  font-size: 12px;
}

.detail-side-card .button {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  justify-content: center;
  padding-inline: 24px;
  font-size: 15px;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer img {
  display: block;
  width: 132px;
  height: auto;
}

@keyframes heroGlow {
  from {
    transform: translate3d(0, 0, 0) scale(0.94);
  }
  to {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

@keyframes signalMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@keyframes flowDash {
  from {
    stroke-dashoffset: 18;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes workflowFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

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

@keyframes dashboardItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashboardDonutIn {
  from {
    transform: scale(0.82) rotate(-28deg);
  }
  to {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes dashboardBarGrow {
  from {
    width: 0;
  }
  to {
    width: var(--bar-width);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-motion-track,
  .hero-panel,
  .flow-line,
  .workflow-card::after,
  .dashboard-motion,
  .dashboard-motion-header,
  .dashboard-motion-kpis,
  .dashboard-motion-grid,
  .dashboard-motion-donut i,
  .dashboard-motion-bars span {
    animation: none;
  }

  .dashboard-motion,
  .dashboard-motion-header,
  .dashboard-motion-kpis,
  .dashboard-motion-grid {
    opacity: 1;
    transform: none;
  }

  .dashboard-motion-donut i {
    transform: none;
  }

  .dashboard-motion-bars span {
    width: var(--bar-width);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .pricing,
  .multilingual,
  .co-creation-grid,
  .feature-screenshot-section,
  .screenshot-showcase,
  .screenshot-pair,
  .feature-detail-grid,
  .contact-section,
  .problem-grid,
  .solution-map-grid,
  .value-props,
  .feature-grid,
  .signal-board,
  .compare-grid,
  .pricing-campaign,
  .pricing-plans,
  .module-price-grid,
  .tool-comparison,
  .cost-simulation,
  .pricing-start-flow {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .co-creation-copy {
    max-width: none;
  }

  .section {
    padding: 72px 0;
  }

  .feature-screenshot-section .section-heading.narrow {
    max-width: none;
  }

  .screenshot-story-section .section-heading.narrow {
    text-align: left;
  }

  .screenshot-story-section .screenshot-section-points {
    grid-template-columns: 1fr;
  }

  .screenshot-story-section .screenshot-pair:nth-child(even) .screenshot-card,
  .screenshot-story-section .screenshot-pair:nth-child(even) > div {
    order: initial;
  }

  .feature-detail-grid > div {
    display: grid;
    gap: 18px;
  }

  .feature-detail-grid > div .detail-card:first-child,
  .feature-detail-grid > div .detail-card:nth-child(2),
  .detail-side-card {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-side-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .detail-side-actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .detail-side-card .button {
    min-width: 0;
  }

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

  .pricing-hero {
    padding-top: 64px;
  }

  .pricing-campaign {
    margin-bottom: 48px;
  }

  .pricing-section {
    padding-bottom: 72px;
  }

  .dashboard-motion-grid,
  .dashboard-motion-donut {
    grid-template-columns: 1fr;
  }

  .dashboard-motion-donut i {
    margin: 0 auto;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-panel {
    padding: 14px;
    border-radius: 26px;
  }

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

  .contact-form {
    padding: 22px;
  }

  .dashboard-motion {
    padding: 16px;
  }

  .dashboard-motion-kpis {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
