:root {
  --font-body: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", "Inter", sans-serif;
  --page: #f7f2fb;
  --page-deep: #f0e8f8;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --panel-dark: #2a123d;
  --line: rgba(98, 59, 143, 0.12);
  --line-strong: rgba(98, 59, 143, 0.22);
  --text: #241231;
  --muted: #6e6080;
  --accent: #8f4eff;
  --accent-strong: #6f2ee8;
  --accent-soft: #eee0ff;
  --keeper: #bccd8a;
  --pathfinder: #6ad6d3;
  --striker: #ff9a6c;
  --maelstrom: #a4b8ff;
  --glassbox: #d8b8ff;
  --shadow: 0 28px 70px rgba(67, 21, 96, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 78, 255, 0.13), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(216, 184, 255, 0.2), transparent 18%),
    radial-gradient(circle at 72% 44%, rgba(111, 46, 232, 0.08), transparent 22%),
    linear-gradient(180deg, #faf6ff 0%, #f6effd 38%, #f7f2fb 68%, #f3edf8 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(143, 78, 255, 0.12), transparent 26%),
    radial-gradient(circle at 82% 26%, rgba(216, 184, 255, 0.18), transparent 20%),
    radial-gradient(circle at 50% 68%, rgba(111, 46, 232, 0.08), transparent 24%);
  filter: blur(18px);
  animation: aura-drift 18s ease-in-out infinite alternate;
}

.section-shell,
.header-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 16px;
}

.header-shell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(67, 21, 96, 0.08);
}

.header-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(143, 78, 255, 0.08), transparent);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 46, 232, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 224, 255, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(143, 78, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(67, 21, 96, 0.05);
}

.lang-button {
  font-family: var(--font-display);
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lang-button:hover {
  color: var(--text);
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(111, 46, 232, 0.18);
}

.header-cta,
.button {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mini-cta {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(111, 46, 232, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100svh - 96px);
  padding: 54px 0 42px;
}

.hero-copy {
  max-width: 37rem;
}

.eyebrow,
.card-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h1 {
  margin-top: 14px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  max-width: 11ch;
}

h2 {
  margin-top: 12px;
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 0.98;
  max-width: 13ch;
}

h3 {
  font-size: 1.46rem;
  line-height: 1.08;
}

.hero-text,
.section-head p,
.benefit-card p,
.product-summary,
.feature-list li,
.workflow-copy p,
.workflow-card p,
.proof-copy p,
.proof-point p,
.plan-card p,
.cta-shell p,
.site-footer p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-text {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span,
.hero-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(67, 21, 96, 0.08);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
}

.hero-stage-panel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(111, 46, 232, 0.14);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 18%, rgba(143, 78, 255, 0.18), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(216, 184, 255, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 235, 252, 0.98));
  box-shadow: var(--shadow);
}

.hero-stage-panel::after {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 78, 255, 0.18), transparent 66%);
  filter: blur(10px);
}

.hero-stage-image {
  position: absolute;
  inset: auto 6% 0;
  width: 88%;
  height: 90%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 62px rgba(67, 21, 96, 0.18));
  animation: figure-float 11s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 158px;
  max-width: 192px;
  padding: 14px 16px;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease;
  animation: badge-float 8s ease-in-out infinite;
}

.hero-badge strong {
  font-size: 0.94rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-badge:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 36px rgba(67, 21, 96, 0.12);
}

.keeper-badge {
  top: 32px;
  left: 26px;
  animation-delay: 0s;
}

.pathfinder-badge {
  top: 82px;
  right: 28px;
  animation-delay: 0.8s;
}

.striker-badge {
  top: 292px;
  left: 20px;
  animation-delay: 1.4s;
}

.maelstrom-badge {
  right: 28px;
  bottom: 138px;
  animation-delay: 1.9s;
}

.glassbox-badge {
  left: calc(50% - 79px);
  bottom: 24px;
  animation-delay: 2.2s;
}

.benefits,
.products-section,
.workflow-section,
.plans-section,
.cta-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.benefits {
  padding: 18px 0 42px;
}

.section-head {
  max-width: 44rem;
}

.section-head p {
  margin-top: 14px;
  line-height: 1.7;
}

.section-head-wide {
  max-width: 52rem;
}

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

.benefit-card,
.product-card,
.workflow-card,
.plan-card,
.proof-point,
.cta-shell {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 24px;
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(111, 46, 232, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit-card h3,
.workflow-card h3,
.plan-card h3,
.proof-point h3 {
  margin-top: 18px;
}

.benefit-card p,
.workflow-card p,
.plan-card p,
.proof-point p,
.cta-shell p {
  margin-top: 14px;
  line-height: 1.7;
}

.products-section {
  padding: 14px 0 42px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.product-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -8% -18%;
  height: 220px;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle, rgba(143, 78, 255, 0.12), transparent 62%);
  transform: translateY(18px);
  transition: transform 260ms ease, opacity 260ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  opacity: 0.94;
}

.keeper-card::after {
  background: linear-gradient(90deg, rgba(188, 205, 138, 0.9), rgba(143, 78, 255, 0.22));
}

.pathfinder-card::after {
  background: linear-gradient(90deg, rgba(106, 214, 211, 0.9), rgba(143, 78, 255, 0.22));
}

.striker-card::after {
  background: linear-gradient(90deg, rgba(255, 154, 108, 0.92), rgba(143, 78, 255, 0.22));
}

.maelstrom-card::after {
  background: linear-gradient(90deg, rgba(164, 184, 255, 0.92), rgba(143, 78, 255, 0.22));
}

.glassbox-card::after {
  background: linear-gradient(90deg, rgba(216, 184, 255, 0.96), rgba(143, 78, 255, 0.22));
}

.product-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 46, 232, 0.18);
  box-shadow: 0 34px 74px rgba(67, 21, 96, 0.14);
}

.product-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.keeper-card,
.pathfinder-card {
  grid-column: span 6;
}

.striker-card,
.maelstrom-card,
.glassbox-card {
  grid-column: span 4;
}

.product-visual {
  position: relative;
  z-index: 1;
  min-height: 270px;
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto;
  height: 120px;
  border-radius: 24px;
  opacity: 0.9;
}

.keeper-card .product-visual::before {
  background: radial-gradient(circle at top, rgba(188, 205, 138, 0.44), transparent 74%);
}

.pathfinder-card .product-visual::before {
  background: radial-gradient(circle at top, rgba(106, 214, 211, 0.4), transparent 74%);
}

.striker-card .product-visual::before {
  background: radial-gradient(circle at top, rgba(255, 154, 108, 0.42), transparent 74%);
}

.maelstrom-card .product-visual::before {
  background: radial-gradient(circle at top, rgba(164, 184, 255, 0.42), transparent 74%);
}

.glassbox-card .product-visual::before {
  background: radial-gradient(circle at top, rgba(216, 184, 255, 0.42), transparent 74%);
}

.product-image {
  position: absolute;
  inset: auto 0 0;
  margin: auto;
  width: 88%;
  height: 90%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 46px rgba(67, 21, 96, 0.14));
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 900ms ease, opacity 900ms ease;
}

.product-image-wide {
  width: 100%;
  height: 78%;
}

.product-card.is-visible .product-image {
  transform: translateY(0) scale(1.02);
  opacity: 1;
}

.product-copy {
  display: flex;
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.product-copy-body,
.plan-copy-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.card-kicker {
  color: var(--accent-strong);
}

.product-copy h3 {
  margin-top: 10px;
}

.product-summary {
  margin-top: 14px;
  line-height: 1.7;
}

.product-actions {
  margin-top: auto;
  padding-top: 18px;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.62;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #fff);
}

.workflow-section {
  padding: 24px 0 52px;
}

.workflow-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 112px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(143, 78, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 232, 248, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.workflow-copy p {
  margin-top: 16px;
  line-height: 1.72;
}

.workflow-steps {
  display: grid;
  gap: 18px;
}

.workflow-card {
  padding: 26px;
  min-height: 240px;
}

.proof-section {
  padding: 74px 0;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(216, 184, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(143, 78, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #33144b 0%, #261136 100%);
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 26px;
  align-items: center;
}

.proof-copy {
  max-width: 40rem;
}

.proof-copy .eyebrow {
  color: #d7b9ff;
}

.proof-copy p,
.proof-point p {
  color: rgba(244, 239, 255, 0.78);
}

.proof-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.proof-point {
  padding: 22px;
  border-color: rgba(215, 185, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.proof-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(215, 185, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 26%, rgba(216, 184, 255, 0.18), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(143, 78, 255, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.05);
}

.proof-image {
  position: absolute;
  inset: auto 0 0;
  margin: auto;
  width: 88%;
  height: 90%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 52px rgba(17, 5, 28, 0.34));
  animation: figure-float 12s ease-in-out infinite;
}

.plans-section {
  padding: 72px 0 32px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 30px;
}

.plan-card {
  display: grid;
  position: relative;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 24px;
  height: 100%;
  min-height: 328px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 253, 0.92));
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(143, 78, 255, 0.82), rgba(216, 184, 255, 0.28));
}

.plan-copy-body {
  justify-content: flex-start;
  gap: 10px;
}

.plan-card .card-kicker,
.plan-card h3,
.plan-card p {
  margin-top: 0;
}

.plan-card h3 {
  min-height: 2.45em;
}

.plan-card .mini-cta {
  align-self: stretch;
  width: 100%;
  min-height: 56px;
  padding: 12px 18px;
  text-align: center;
  line-height: 1.3;
  margin-top: 18px;
}

.cta-section {
  padding: 24px 0 64px;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 34px;
  background:
    radial-gradient(circle at 16% 22%, rgba(143, 78, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 232, 248, 0.96));
}

.site-footer {
  border-top: 1px solid rgba(98, 59, 143, 0.1);
}

.site-footer {
  padding: 0 0 54px;
}

.site-footer p {
  margin: 0;
  line-height: 1.7;
}

html[lang="fr"] h1,
html[lang="es"] h1 {
  max-width: 12ch;
}

html[lang="ja"] h2,
html[lang="zh-CN"] h2 {
  max-width: 13ch;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

html[lang="ja"],
html[lang="zh-CN"] {
  --font-body:
    "Noto Sans JP",
    "Noto Sans SC",
    "Hiragino Sans",
    "Yu Gothic",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  --font-display:
    "Noto Sans JP",
    "Noto Sans SC",
    "Hiragino Sans",
    "Yu Gothic",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

html[lang="ja"] h1,
html[lang="zh-CN"] h1 {
  max-width: 10ch;
  font-size: clamp(2.85rem, 6vw, 5.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

html[lang="ja"] .eyebrow,
html[lang="ja"] .card-kicker,
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .card-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

html[lang="ja"] .brand-tag,
html[lang="zh-CN"] .brand-tag {
  font-size: 0.72rem;
}

html[lang="ja"] .site-nav,
html[lang="zh-CN"] .site-nav {
  gap: 16px;
  font-size: 0.89rem;
}

html[lang="ja"] .hero-badge,
html[lang="zh-CN"] .hero-badge {
  min-width: 0;
  max-width: 176px;
  padding: 12px 14px;
}

html[lang="ja"] .hero-badge span,
html[lang="zh-CN"] .hero-badge span {
  font-size: 0.74rem;
  line-height: 1.34;
}

html[lang="ja"] .hero-meta span,
html[lang="zh-CN"] .hero-meta span {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.84rem;
  line-height: 1.28;
}

html[lang="ja"] .mini-cta,
html[lang="zh-CN"] .mini-cta {
  font-size: 0.84rem;
}

html[lang="ja"] .plan-card .mini-cta {
  align-self: flex-start;
  width: auto;
  min-width: 0;
  max-width: 12.5rem;
  padding-inline: 16px;
}

html[lang="zh-CN"] .plan-card .mini-cta {
  align-self: flex-start;
  width: auto;
  min-width: 0;
  max-width: 11.5rem;
  padding-inline: 15px;
}

html[lang="ja"] .plan-card h3,
html[lang="zh-CN"] .plan-card h3 {
  min-height: 2.2em;
  max-width: 11ch;
  line-height: 1.18;
}

html[lang="ja"] p,
html[lang="ja"] li,
html[lang="zh-CN"] p,
html[lang="zh-CN"] li {
  line-break: strict;
  word-break: keep-all;
}

.mini-cta:hover {
  border-color: rgba(111, 46, 232, 0.28);
  box-shadow: 0 14px 30px rgba(67, 21, 96, 0.1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.986);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes figure-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes aura-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -14px, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .header-shell {
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 34px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .workflow-shell,
  .proof-shell,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage-panel {
    min-height: 600px;
  }

  .workflow-copy {
    position: static;
  }

  .keeper-card,
  .pathfinder-card,
  .striker-card,
  .maelstrom-card,
  .glassbox-card {
    grid-column: span 12;
  }

  .benefit-grid,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-card {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .header-shell {
    width: min(100% - 24px, 1240px);
  }

  .header-shell {
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: flex-start;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .language-switcher {
    order: 1;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero,
  .benefits,
  .products-section,
  .workflow-section,
  .proof-section,
  .plans-section,
  .cta-section {
    padding-top: 32px;
  }

  .hero-stage-panel {
    min-height: 520px;
  }

  .hero-stage-image {
    inset: auto 0 0;
    width: 100%;
    height: 80%;
  }

  .hero-badge {
    min-width: 138px;
    max-width: 150px;
    padding: 12px 14px;
  }

  .keeper-badge {
    top: 18px;
    left: 18px;
  }

  .pathfinder-badge {
    top: 70px;
    right: 18px;
  }

  .striker-badge {
    top: 220px;
    left: 14px;
  }

  .maelstrom-badge {
    right: 18px;
    bottom: 104px;
  }

  .glassbox-badge {
    bottom: 16px;
  }

  .benefit-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .product-visual {
    min-height: 240px;
  }

  .proof-visual {
    min-height: 380px;
  }

  .cta-shell {
    padding: 26px 24px;
  }

  html[lang="ja"] h1,
  html[lang="zh-CN"] h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  html[lang="ja"] h2,
  html[lang="zh-CN"] h2 {
    max-width: 11ch;
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  html[lang="ja"] .hero-badge,
  html[lang="zh-CN"] .hero-badge {
    max-width: 142px;
  }
}
