:root {
  --bg: #ffffff;
  --bg-2: #f7f8f9;
  --bg-3: #f0f1f3;
  --border: #e4e5e8;
  --border-2: #d0d2d8;
  --text: #0a0b0d;
  --text-2: #3c4049;
  --text-3: #6b7280;
  --text-4: #9ba1aa;
  --accent: #4680ff;
  --accent-hover: #3a6ee8;
  --accent-soft: rgba(70, 128, 255, 0.1);
  --accent-ring: rgba(70, 128, 255, 0.18);
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 14px 36px rgba(15, 23, 42, 0.04);
  --grid-line: rgba(70, 128, 255, 0.09);
  --grid-line-strong: rgba(70, 128, 255, 0.14);
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}

body {
  line-height: 1.55;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.shell {
  min-height: 100vh;
}

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  margin-left: auto;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.nav-toggle:hover {
  border-color: var(--border-2);
  background: var(--bg-2);
}

.nav-toggle:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.nav-toggle__line {
  position: absolute;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle__line:nth-child(1) {
  transform: translateY(-4px);
}

.nav-toggle__line:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle__line:nth-child(3) {
  transform: translateY(4px);
}

.top.is-mobile-open .nav-toggle__line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.top.is-mobile-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.top.is-mobile-open .nav-toggle__line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  transition: color 0.12s ease;
}

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

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  padding: 0.34rem 0.72rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-3);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.language-trigger:hover,
.language-menu.is-open .language-trigger {
  border-color: var(--border-2);
  background: var(--bg-2);
  color: var(--text);
}

.language-trigger:focus-visible,
.language-option:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.language-trigger__icon,
.language-trigger__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.language-trigger__icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.language-trigger__caret svg {
  width: 12px;
  height: 12px;
}

.language-trigger__label {
  font-size: 0.78rem;
  font-weight: 510;
  letter-spacing: -0.012em;
  white-space: nowrap;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  min-width: 12rem;
  padding: 0.35rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  z-index: 30;
}

.language-dropdown[hidden] {
  display: none;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 510;
  text-align: left;
}

.language-option:hover,
.language-option.is-active {
  background: var(--bg-2);
  color: var(--text);
}

.language-option__check {
  width: 14px;
  height: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
}

.btn-ghost:hover {
  background: var(--bg-2);
}

.btn-outline {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border-2);
}

.btn-outline:hover {
  background: var(--bg-2);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-lg {
  min-height: 2.85rem;
  padding: 0 1.2rem;
  font-size: 14.5px;
}

.hero {
  padding: 96px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.hero--compact {
  grid-template-columns: 1fr;
  gap: 0;
  padding-bottom: 1rem;
}

.hero-copy--wide {
  max-width: 780px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 4px 4px 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(70, 128, 255, 0.2);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.hero-kicker-tag {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  white-space: nowrap;
}

.hero-kicker > span:last-child {
  min-width: 0;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.042em;
  font-weight: 600;
}

.hero-sub {
  margin: 0 0 2rem;
  max-width: 620px;
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.6;
  letter-spacing: -0.011em;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-hint {
  font-size: 11px;
  color: var(--text-4);
  font-family: var(--font-mono);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-visual-art svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
}

.hero-orbit-grid circle,
.hero-axis line,
.hero-core-ring {
  stroke: rgba(10, 11, 13, 0.09);
}

.hero-orbit-grid circle {
  stroke-width: 1;
}

.hero-axis line {
  stroke-width: 1;
}

.hero-core-ring {
  fill: none;
  stroke-width: 1;
}

.hero-core-dot {
  fill: var(--text);
}

.hero-orbit circle {
  stroke: var(--grid-line-strong);
  stroke-width: 1.2;
  stroke-dasharray: 48 1080;
  stroke-linecap: round;
}

.hero-orbit__dot {
  fill: rgba(70, 128, 255, 0.5);
}

.hero-orbit__dot--accent {
  fill: var(--accent);
}

.hero-orbit--outer {
  transform-origin: 50% 50%;
  animation: spin-slow 22s linear infinite;
}

.hero-orbit--inner {
  transform-origin: 50% 50%;
  animation: spin-reverse 32s linear infinite;
}

.hero-panel,
.metric-card,
.surface-card,
.feat,
.price-card,
.faq,
.trust-card,
.cta-band {
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.08);
}

.hero-floating {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(70, 128, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: -0.02em;
  max-width: min(220px, 44%);
  backdrop-filter: blur(10px);
}

.hero-floating::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(70, 128, 255, 0.08);
}

.hero-floating--1 {
  top: 1.2rem;
  right: 0.6rem;
  animation: float-card 7s ease-in-out infinite;
}

.hero-floating--2 {
  top: 5.6rem;
  left: 0.5rem;
  animation: float-card 8.5s ease-in-out infinite reverse;
}

.hero-floating--3 {
  top: 49%;
  right: -0.15rem;
  animation: float-card 9.5s ease-in-out infinite;
}

.hero-floating--4 {
  bottom: 4rem;
  left: 0;
  animation: float-card 8s ease-in-out infinite;
}

.hero-floating--5 {
  right: 2.4rem;
  bottom: 1rem;
  animation: float-card 10s ease-in-out infinite reverse;
}

.hero-panel-head,
.snapshot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.surface-pill,
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.surface-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(70, 128, 255, 0.18);
}

.snapshot-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.snapshot-row {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.snapshot-row span {
  color: var(--text-3);
  font-size: 13px;
}

.snapshot-row strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.metrics,
.section {
  padding: 0 0 72px;
}

.stage-grid {
  position: relative;
  isolation: isolate;
}

.stage-grid::before,
.stage-grid::after {
  content: '';
  position: absolute;
  inset: -1.5rem;
  z-index: -1;
  pointer-events: none;
}

.stage-grid::before {
  border-radius: 28px;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 86%);
  opacity: 0.9;
  animation: drift-grid 28s linear infinite;
}

.stage-grid::after {
  border-radius: 28px;
  background: rgba(70, 128, 255, 0.025);
}

.stage-grid > * {
  position: relative;
  z-index: 1;
}

.stage-grid + .stage-grid {
  padding-top: 1.5rem;
}

.stage-grid + .stage-grid::before,
.stage-grid + .stage-grid::after {
  inset: 0 -1.5rem -1.5rem;
}

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

.metric-card {
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.metric-card span {
  display: block;
  color: var(--text-3);
  font-size: 12px;
  margin-bottom: 0.55rem;
}

.metric-card strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.section-title {
  margin: 0 0 0.8rem;
  max-width: 760px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-sub {
  margin: 0 0 2.5rem;
  max-width: 680px;
  color: var(--text-3);
  font-size: 16px;
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-block {
  min-width: 0;
}

.section-block + .section-block {
  padding-top: 3rem;
  border-top: 1px solid rgba(70, 128, 255, 0.16);
}

.feat-grid,
.surface-grid,
.pricing-grid,
.faq-grid,
.trust-grid {
  display: grid;
  gap: 0.75rem;
}

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

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

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

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

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

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

.feat,
.surface-card,
.price-card,
.faq,
.trust-card {
  border-radius: 14px;
  padding: 1.3rem 1.15rem;
  box-shadow: var(--shadow-card);
}

.feat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feat-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.feat h4,
.surface-card h4,
.faq h5 {
  margin: 0 0 0.45rem;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.feat p,
.surface-card p,
.faq p,
.trust-card p {
  margin: 0;
  color: var(--text-3);
  font-size: 13.5px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(70, 128, 255, 0.95), rgba(70, 128, 255, 0.25));
}

.trust-card h4 {
  margin: 0 0 0.6rem;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.feat-demo {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.55;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.price-card.featured {
  border-color: rgba(70, 128, 255, 0.28);
  background: var(--accent-soft);
  padding: 1.45rem 1.25rem;
  transform: translateY(-0.35rem);
  box-shadow: 0 22px 54px rgba(32, 56, 112, 0.16);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: var(--accent);
}

.price-head {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(70, 128, 255, 0.12);
  border: 1px solid rgba(70, 128, 255, 0.18);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-badge__star {
  font-size: 11px;
  line-height: 1;
}

.price-name {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-desc {
  min-height: 3.9rem;
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.55;
}

.price-amt {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 0.9rem 0 1rem;
  border-bottom: 1px solid var(--border);
}

.price-amt .n {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.price-amt.custom .n {
  font-size: 24px;
}

.price-amt .u {
  color: var(--text-4);
  font-family: var(--font-mono);
  font-size: 12px;
}

.price-cta {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.price-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1 1 auto;
}

.price-feats li {
  display: flex;
  gap: 0.55rem;
  color: var(--text-2);
  font-size: 13px;
}

.chk {
  color: var(--accent);
  font-weight: 700;
}

.cta-band {
  border-radius: 18px;
  padding: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.cta-band > div {
  min-width: 0;
}

.cta-band h3 {
  margin: 0 0 0.55rem;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.cta-band p {
  margin: 0;
  color: var(--text-3);
  font-size: 14px;
}

.cta-band .btn {
  justify-self: end;
  min-width: max-content;
  max-width: none;
  text-align: center;
  white-space: nowrap;
}

footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.foot-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.foot p {
  margin: 0;
  color: var(--text-3);
  font-size: 13px;
}

.foot-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-4);
}

.foot-meta--credit {
  gap: 0.4rem;
}

.foot-heart {
  font-size: 12px;
  line-height: 1;
}

.foot-credit {
  color: var(--text-2);
  font-weight: 500;
}

.foot-credit:hover {
  color: var(--text);
}

.foot-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--text-3);
  font-size: 13px;
}

.foot-links a:hover {
  color: var(--text);
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift-grid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 44px 22px, 22px 44px;
  }
}

@media (max-width: 1100px) {
  .hero {
    gap: 2rem;
  }

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

@media (max-width: 980px) {
  .hero,
  .feat-grid,
  .feat-grid--two,
  .surface-grid,
  .metric-grid,
  .pricing-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .section-stack {
    gap: 2.25rem;
  }

  .section-block + .section-block {
    padding-top: 2.25rem;
  }

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

  .hero-floating--1,
  .hero-floating--3,
  .hero-floating--5 {
    right: 1.6rem;
  }

  .hero-floating--2,
  .hero-floating--4 {
    left: 1rem;
  }

  .cta-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .price-card.featured {
    transform: none;
  }

  .cta-band .btn {
    justify-self: start;
    max-width: 100%;
  }

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

@media (max-width: 760px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0.8rem 0;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    order: 3;
    flex: 0 0 100%;
    display: none;
    width: 100%;
    margin-top: 0.1rem;
    padding: 0.35rem 0 0.15rem;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .top.is-mobile-open .nav-panel {
    display: flex;
  }

  .nav-links {
    width: 100%;
    display: grid;
    gap: 0.45rem;
  }

  .nav-links a {
    min-height: 2.8rem;
    padding: 0.78rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 0.95rem;
    background: var(--bg);
    color: var(--text-2);
  }

  .nav-links a.is-active,
  .nav-links a:hover {
    border-color: rgba(70, 128, 255, 0.22);
    background: var(--accent-soft);
    color: var(--text);
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.6rem;
  }

  .language-menu {
    grid-column: 1 / -1;
  }

  .language-trigger {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.5rem 0.85rem;
    border-radius: 0.95rem;
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .nav-panel .language-trigger__icon {
    color: var(--accent);
  }

  .nav-panel .language-trigger__label {
    display: inline;
    margin-right: auto;
    font-size: 0.84rem;
    color: var(--text);
  }

  .nav-panel .language-dropdown {
    position: static;
    top: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    margin-top: 0.45rem;
    border-radius: 0.95rem;
    box-shadow: none;
  }

  .nav-panel .language-option {
    min-height: 2.45rem;
    padding: 0.55rem 0.75rem;
  }

  .nav-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-kicker {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    width: min(100%, 25rem);
    padding: 0.72rem 0.8rem;
    border-radius: 1rem;
  }

  .hero-kicker > span:last-child {
    display: block;
    width: 100%;
    line-height: 1.45;
  }

  .hero-visual {
    display: block;
    min-height: 0;
    padding-top: 0.75rem;
  }

  .hero-visual-art {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    margin: 0 auto 1rem;
  }

  .hero-visual-art svg {
    max-width: none;
    width: 100%;
  }

  .hero-floating {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.75rem;
    justify-content: flex-start;
  }

  .hero-floating:last-child {
    margin-bottom: 0;
  }

  .cta-band {
    padding: 1.5rem;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100%, calc(100% - 1.2rem));
  }

  .nav-panel {
    padding-top: 0.3rem;
  }

  .language-trigger__label {
    display: none;
  }

  .nav-panel .language-trigger__label {
    display: inline;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: 15.5px;
  }

  .hero-kicker {
    width: 100%;
    padding: 0.68rem 0.75rem;
    font-size: 11.5px;
  }

  .hero-kicker-tag {
    padding: 0.22rem 0.55rem;
    font-size: 10px;
  }

  .hero-cta {
    align-items: stretch;
  }

  .hero-visual-art {
    width: min(100%, 280px);
  }

  .btn-lg,
  .price-cta {
    width: 100%;
  }

  .stage-grid::before,
  .stage-grid::after {
    inset: -0.6rem;
  }
}

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