:root {
  --bg: #070808;
  --bg-soft: #0d0f10;
  --bg-panel: #101314;
  --bg-panel-soft: rgba(255, 255, 255, 0.04);
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-light: #0b0d0e;
  --bg-light-strong: #111416;
  --text: #f5f7fb;
  --text-muted: rgba(245, 247, 251, 0.78);
  --text-dim: rgba(245, 247, 251, 0.56);
  --text-dark: #f5f7fb;
  --text-dark-soft: rgba(245, 247, 251, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-dark: rgba(255, 255, 255, 0.1);
  --accent: #8f9a86;
  --accent-soft: rgba(143, 154, 134, 0.13);
  --accent-text: rgba(214, 220, 206, 0.92);
  --success: #74a78a;
  --shadow-hero: none;
  --shadow-card: none;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --shell: 1328px;
}

html[data-theme="light"] {
  --bg: #f5f1ea;
  --bg-soft: #ece7df;
  --bg-panel: #ffffff;
  --bg-panel-soft: rgba(16, 18, 22, 0.03);
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-light: #f2efe9;
  --bg-light-strong: #fbfaf7;
  --text: #101216;
  --text-muted: rgba(16, 18, 22, 0.74);
  --text-dim: rgba(16, 18, 22, 0.56);
  --text-dark: #101216;
  --text-dark-soft: #615f5a;
  --line: rgba(16, 18, 22, 0.1);
  --line-soft: rgba(16, 18, 22, 0.06);
  --line-dark: rgba(16, 18, 22, 0.1);
  --accent-text: rgba(52, 60, 49, 0.92);
  --shadow-card: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 154, 134, 0.13), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(170, 145, 115, 0.08), transparent 18%),
    linear-gradient(180deg, #070808 0%, #090b0c 34%, #0d1011 66%, #070808 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 58%);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(143, 154, 134, 0.12), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(170, 145, 115, 0.08), transparent 18%),
    linear-gradient(180deg, #f7f3ec 0%, #f3eee6 42%, #ece7df 100%);
  color: var(--text);
}

html[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(16, 18, 22, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 22, 0.018) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 72%);
}

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

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

button {
  font: inherit;
}

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

.site-bg {
  position: relative;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 14, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .site-header.is-scrolled {
  background: rgba(249, 245, 238, 0.82);
  box-shadow: 0 12px 30px rgba(16, 18, 22, 0.08);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-switchers {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 9px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.theme-option {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.theme-option:hover {
  color: var(--text);
}

.theme-option.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

html[data-theme="light"] .theme-switcher {
  background: rgba(16, 18, 22, 0.04);
}

html[data-theme="light"] .theme-option.is-active {
  background: rgba(16, 18, 22, 0.08);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.language-option:hover {
  color: var(--text);
}

.language-option.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

html[data-theme="light"] .language-switcher {
  background: rgba(16, 18, 22, 0.04);
}

html[data-theme="light"] .language-option.is-active {
  background: rgba(16, 18, 22, 0.08);
}

.main-nav a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 34px 0 72px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-shell-single {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}

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

.hero-shell-single .hero-copy {
  max-width: 760px;
}

.hero-media {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-media-frame {
  position: relative;
  width: min(100%, 780px);
  margin-left: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #141614 0%, #101210 100%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.hero-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(143, 154, 134, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(170, 145, 115, 0.06), transparent 26%);
}

.hero-media-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 20px;
}

.hero-media-dots {
  display: flex;
  gap: 8px;
}

.hero-media-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-media-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-video-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #090b0d;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  background: #090b0d;
}

.hero-eyebrow,
.section-tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-eyebrow {
  min-height: 34px;
  margin-bottom: 24px;
  padding: 0 12px;
  color: var(--accent-text);
  background: var(--accent-soft);
  border: 1px solid rgba(143, 154, 134, 0.18);
}

.hero h1,
.statement-head h2,
.story-copy h2,
.pricing-copy h2,
.cta-copy h2 {
  letter-spacing: -0.042em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.85rem, 4.5vw, 4.55rem);
  font-weight: 680;
  line-height: 1.03;
}

.hero h1.hero-title {
  max-width: none;
  font-size: clamp(2.6rem, 4.15vw, 4.2rem);
  line-height: 1;
}

.hero-title-line {
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.08em;
}

@media (min-width: 961px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

.hero-body,
.statement-head p,
.story-copy p,
.story-list li,
.panel-card p,
.metric-card p,
.platform-card p,
.pricing-highlight p,
.faq-item p,
.cta-copy p,
.cta-card p,
.site-footer p {
  line-height: 1.8;
}

.hero-body {
  margin-top: 26px;
  color: rgba(245, 247, 251, 0.74);
  max-width: 46ch;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: #101216;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(90deg, #86f3e5 0%, #f6e5ef 50%, #ef9de7 100%);
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.58),
    inset 0 10px 24px rgba(255, 255, 255, 0.3),
    0 12px 24px rgba(239, 157, 231, 0.22),
    0 4px 14px rgba(134, 243, 229, 0.18);
}

.ghost-btn {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.primary-btn:hover,
.ghost-btn:hover,
.capability-card:hover,
.platform-card:hover,
.cta-card:hover,
.faq-item:hover,
.panel-card:hover {
  transform: translateY(-2px);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.hero-proof-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: flex-start;
  padding: 16px 16px 17px;
  min-height: 102px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.hero-proof-card span {
  display: block;
  margin-bottom: 0;
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-proof-card strong {
  display: block;
  max-width: 12ch;
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.42;
}

html[lang="en"] .hero-shell {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

html[lang="en"] .hero h1.hero-title {
  max-width: 12.4ch;
  font-size: clamp(2.42rem, 3.85vw, 3.84rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

html[lang="en"] .hero-title-line,
html[lang="en"] .section-title-line {
  white-space: normal;
}

html[lang="en"] .hero-body {
  max-width: 54ch;
  font-size: 0.98rem;
}

html[lang="en"] .hero-proof-card strong {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.36;
}

.hero-stage {
  position: relative;
}

.stage-window {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #141614 0%, #101210 100%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.stage-window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(143, 154, 134, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(170, 145, 115, 0.06), transparent 26%);
}

.stage-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 20px;
}

.stage-dots {
  display: flex;
  gap: 8px;
}

.stage-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.stage-label,
.stage-state {
  font-size: 0.8rem;
  font-weight: 700;
}

.stage-label {
  color: var(--text-muted);
}

.stage-state {
  margin-left: auto;
  color: var(--success);
}

.stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 8px 18px;
}

.stage-pills span,
.remote-actions span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.stage-main-card,
.panel-card,
.remote-board,
.remote-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.metric-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.stage-main-card {
  padding: 22px;
}

.stage-main-card h2 {
  max-width: 16ch;
  margin-top: 12px;
  font-size: clamp(1.62rem, 1.95vw, 1.96rem);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

html[lang="en"] .stage-main-card h2 {
  max-width: 21ch;
  font-size: clamp(1.46rem, 1.72vw, 1.8rem);
  line-height: 1.14;
}

.stage-main-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

.stage-image-wrap {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.stage-image-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.stage-side-column {
  display: grid;
  gap: 14px;
}

.mini-label {
  min-height: 30px;
  padding: 0 10px;
  color: var(--accent-text);
  background: var(--accent-soft);
}

.metric-card,
.panel-card,
.remote-card {
  padding: 20px;
}

.metric-card {
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.metric-card strong,
.panel-card strong,
.remote-card strong,
.capability-card h3,
.platform-card h3,
.cta-card h3 {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

html[lang="en"] .metric-card strong,
html[lang="en"] .panel-card strong,
html[lang="en"] .remote-card strong,
html[lang="en"] .capability-card h3,
html[lang="en"] .platform-card h3,
html[lang="en"] .cta-card h3 {
  font-size: 0.96rem;
  line-height: 1.42;
}

.metric-card p,
.panel-card p,
.remote-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metric-card.accent {
  background: linear-gradient(180deg, rgba(143, 154, 134, 0.12), rgba(255, 255, 255, 0.03));
}

.metric-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.logo-band {
  padding: 20px 0 34px;
}

.logo-band-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.logo-band-inner p {
  max-width: 24ch;
  color: rgba(245, 247, 251, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.logo-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-item {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 244, 247, 0.94));
  box-shadow: none;
}

.logo-item img {
  width: auto;
  max-width: 38px;
  max-height: 38px;
}

.statement-section,
.control-section,
.faq-section,
.cta-section,
.pricing-section,
.product-story {
  position: relative;
}

.statement-section,
.control-section,
.faq-section {
  color: var(--text-dark);
  background: var(--bg-light);
}

.statement-section {
  padding: 112px 0 96px;
}

.statement-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: var(--accent-text);
  background: rgba(255, 255, 255, 0.05);
}

.statement-head h2,
.story-copy h2,
.pricing-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 3.7vw, 4.2rem);
  font-weight: 660;
}

.section-title-split {
  text-wrap: initial;
}

.section-title-line {
  display: block;
}

.section-title-line + .section-title-line {
  margin-top: 0.12em;
}

.statement-head h2 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.statement-head .statement-title-wide {
  max-width: 16ch;
}

.statement-head .statement-title-control {
  max-width: 18ch;
}

.story-copy h2 {
  max-width: 13ch;
}

.pricing-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

.cta-copy h2 {
  max-width: 14ch;
}

.faq-title {
  max-width: none;
  font-size: clamp(2.05rem, 3.15vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.cta-title-split {
  max-width: none;
  font-size: clamp(1.95rem, 3vw, 3.3rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

html[lang="en"] .statement-head h2 {
  max-width: 18ch;
  line-height: 1.1;
}

html[lang="en"] .statement-head .statement-title-wide {
  max-width: 22ch;
}

html[lang="en"] .story-copy h2 {
  max-width: 20ch;
  line-height: 1.1;
}

html[lang="en"] .pricing-copy h2 {
  max-width: 18ch;
  line-height: 1.1;
}

html[lang="en"] .faq-title {
  max-width: 19ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.92rem, 2.8vw, 3.1rem);
  line-height: 1.12;
}

html[lang="en"] .cta-title-split {
  max-width: 19ch;
  font-size: clamp(1.88rem, 2.72vw, 2.95rem);
  line-height: 1.12;
}

@media (min-width: 961px) {
  .section-title-line {
    white-space: nowrap;
  }
}

.statement-head p,
.story-copy p,
.pricing-copy p,
.cta-copy p,
.capability-card p,
.platform-card p,
.pricing-highlight p,
.faq-item p,
.cta-card p,
.site-footer p {
  color: var(--text-dark-soft);
  font-size: 1rem;
}

.statement-head p {
  margin-top: 20px;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.overview-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.overview-item {
  display: grid;
  gap: 8px;
  padding: 8px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.overview-item strong {
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.overview-item span {
  color: var(--text-dark-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

html[lang="en"] .overview-item {
  gap: 7px;
}

html[lang="en"] .overview-item strong {
  font-size: 0.92rem;
}

html[lang="en"] .overview-item span {
  font-size: 0.84rem;
  line-height: 1.58;
}

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

.media-showcase {
  padding: 0 0 88px;
  color: var(--text-dark);
  background: var(--bg-light);
}

.media-showcase-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.media-slot {
  min-height: 320px;
}

.capability-card,
.platform-card,
.pricing-panel,
.faq-item,
.cta-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.capability-card,
.platform-card,
.faq-item,
.cta-card {
  padding: 24px;
}

.capability-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 247, 251, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.capability-card h3 {
  margin-top: 16px;
  font-size: 1.08rem;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.capability-card p {
  margin-top: 12px;
}

.capability-media {
  position: relative;
  margin-top: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(143, 154, 134, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.capability-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0) 0%, rgba(8, 9, 13, 0.12) 100%);
}

.capability-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  border-radius: inherit;
}

.capability-media-desktop img {
  object-position: left center;
}

.capability-media-remote img {
  object-position: center center;
}

.capability-media-platform img {
  object-position: right center;
}

.product-story {
  padding: 100px 0;
  color: var(--text-dark);
  background: var(--bg-light);
}

.product-story-dark {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 154, 134, 0.08), transparent 20%),
    linear-gradient(180deg, #141614 0%, #101210 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.story-grid.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.product-story-dark .section-tag {
  color: var(--accent-text);
  background: var(--accent-soft);
}

.story-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.story-kicker .section-tag {
  margin-bottom: 0;
}

.story-beta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(147, 105, 33, 0.14);
  color: rgba(245, 247, 251, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(147, 105, 33, 0.12),
    0 0 24px rgba(147, 105, 33, 0.24);
  animation: betaPulse 2.8s ease-in-out infinite;
}

.story-beta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(147, 105, 33, 0.28) 0%, rgba(147, 105, 33, 0) 72%);
  opacity: 0.7;
  z-index: -1;
  filter: blur(8px);
  animation: betaGlow 2.8s ease-in-out infinite;
}

@keyframes betaPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 18px rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(147, 105, 33, 0.12),
      0 0 20px rgba(147, 105, 33, 0.22);
  }

  50% {
    box-shadow:
      inset 0 0 20px rgba(255, 255, 255, 0.12),
      0 0 0 1px rgba(147, 105, 33, 0.18),
      0 0 34px rgba(147, 105, 33, 0.36);
  }
}

@keyframes betaGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

.product-story-dark .story-copy p,
.product-story-dark .story-list li {
  color: var(--text-muted);
}

.story-copy p {
  margin-top: 20px;
  max-width: 56ch;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.story-list li {
  position: relative;
  padding-left: 22px;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(143, 154, 134, 0.12);
}

.story-panel {
  position: relative;
}

.panel-stack {
  display: grid;
  gap: 16px;
}

.panel-card {
  background: rgba(255, 255, 255, 0.035);
}

.panel-card-large {
  padding: 24px;
}

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

.remote-board {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #121412 0%, #0d100f 100%);
}

.remote-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 247, 251, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.remote-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(116, 167, 138, 0.14);
  color: rgba(214, 220, 206, 0.94);
}

.remote-card {
  background: rgba(255, 255, 255, 0.03);
}

.remote-card p,
.remote-card strong {
  color: var(--text-dark);
}

.control-section {
  padding: 100px 0;
}

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

.platform-grid-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.platform-grid-five .platform-card {
  grid-column: span 2;
}

.platform-grid-five .platform-card:nth-child(4) {
  grid-column: 2 / span 2;
  justify-self: stretch;
}

.platform-grid-five .platform-card:nth-child(5) {
  grid-column: 4 / span 2;
  justify-self: stretch;
}

.platform-card h3 {
  margin-top: 12px;
  color: var(--text-dark);
  font-size: 1.08rem;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.platform-card p {
  margin-top: 12px;
}

.platform-card.highlight {
  background: linear-gradient(180deg, rgba(143, 154, 134, 0.16), rgba(255, 255, 255, 0.03));
}

.pricing-section {
  padding: 100px 0;
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--bg-light) 0%, #090b0c 100%);
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: start;
}

.pricing-copy p {
  margin-top: 20px;
  max-width: 50ch;
}

.pricing-highlight {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-card);
  max-width: 430px;
}

.pricing-highlight span {
  display: inline-flex;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 247, 251, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-highlight strong {
  display: block;
  margin-top: 14px;
  font-size: 1.12rem;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.pricing-highlight p {
  margin-top: 10px;
}

.pricing-panel {
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: 16px 20px;
  color: rgba(245, 247, 251, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody td {
  padding: 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dark);
  font-weight: 600;
  vertical-align: top;
}

.pricing-table td strong {
  display: block;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.pricing-table td span {
  display: block;
  margin-top: 8px;
  color: var(--text-dark-soft);
  font-size: 0.9rem;
  font-weight: 400;
}

.featured-row {
  background: rgba(143, 154, 134, 0.1);
}

.faq-section {
  padding: 18px 0 96px;
}

.faq-shell {
  display: grid;
  gap: 36px;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  overflow: hidden;
}

.faq-item summary {
  display: block;
  width: 100%;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  border-radius: 18px;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
  max-width: 100%;
}

.cta-section {
  padding: 20px 0 40px;
  color: var(--text-dark);
  background: var(--bg-light);
}

.cta-shell {
  width: min(1360px, calc(100% - 24px));
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
  box-shadow: none;
  overflow: visible;
}

.cta-shell .section-tag {
  color: var(--accent-text);
  background: rgba(255, 255, 255, 0.05);
}

.cta-shell .cta-copy p {
  margin-top: 18px;
  color: rgba(245, 247, 251, 0.68);
  max-width: 48ch;
}

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

.cta-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  min-height: 244px;
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.cta-card .mini-label {
  color: var(--accent-text);
  background: rgba(255, 255, 255, 0.05);
}

.platform-card .mini-label {
  color: var(--accent-text);
  background: rgba(255, 255, 255, 0.05);
}

.cta-card h3,
.cta-card strong {
  color: var(--text-dark);
}

.cta-card strong {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.9rem;
  font-weight: 650;
}

.cta-card p {
  margin-top: 12px;
  max-width: 28ch;
  color: var(--text-dark-soft);
}

.cta-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cta-card-meta span,
.cta-card-caption {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 247, 251, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-card-action::after {
  content: "->";
  color: rgba(245, 247, 251, 0.42);
  font-size: 0.9rem;
}

.cta-contact strong {
  margin-top: 0;
  padding-top: 0;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.cta-card-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.1);
  grid-column: span 1;
}

.cta-card-dark .mini-label {
  color: rgba(245, 247, 251, 0.84);
  background: rgba(255, 255, 255, 0.06);
}

.cta-card-dark h3,
.cta-card-dark p,
.cta-card-dark strong {
  color: var(--text-dark);
}

.cta-card-dark .cta-card-caption {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 247, 251, 0.64);
}

.cta-card-dark .cta-card-action {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.cta-card-dark .cta-card-action::after {
  color: rgba(245, 247, 251, 0.42);
}

.qr-box {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-top: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 18, 22, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.qr-link {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.qr-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.cta-community-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.cta-community-row .qr-box {
  margin-top: 0;
}

.cta-contact {
  display: grid;
  gap: 10px;
}

.cta-contact strong {
  color: var(--text-dark);
  margin-top: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.cta-contact-email {
  display: inline-block;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-color: rgba(245, 247, 251, 0.22);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
}

.cta-contact-email:hover {
  color: rgba(245, 247, 251, 0.92);
  text-decoration-color: rgba(245, 247, 251, 0.5);
}

.cta-contact-note {
  color: var(--text-dark-soft);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-directory {
  padding: 44px 0 40px;
  color: rgba(245, 247, 251, 0.82);
  background: var(--bg-light);
}

.directory-shell {
  width: min(1560px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 26px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.directory-lead {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  min-width: 0;
}

.directory-lead p {
  max-width: 84ch;
  margin-top: 0;
  color: rgba(245, 247, 251, 0.72);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 560;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 24px 20px;
}

.footer-directory .directory-grid-rows {
  grid-template-columns: 1fr;
  gap: 18px;
}

.footer-directory .directory-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-directory .directory-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.footer-directory .directory-row .directory-label {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.footer-directory .directory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-directory .directory-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: auto;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

html[lang="en"] .footer-directory .directory-row {
  grid-template-columns: 132px minmax(0, 1fr);
}

html[lang="en"] .footer-directory .directory-links {
  gap: 10px 18px;
}

html[lang="en"] .footer-directory .directory-links a {
  font-size: 0.9rem;
  line-height: 1.5;
}

.directory-column {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 10px;
}

.directory-label {
  color: rgba(245, 247, 251, 0.46);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

html[lang="en"] .directory-label {
  font-size: 0.8rem;
}

.directory-column a {
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}

.directory-column a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.site-footer {
  padding: 0 0 52px;
  color: rgba(245, 247, 251, 0.78);
  background: var(--bg-light);
}

.footer-shell {
  width: min(1440px, calc(100% - 20px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: var(--text);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  min-width: 0;
}

.footer-meta p {
  margin: 0;
  color: rgba(245, 247, 251, 0.64);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: rgba(245, 247, 251, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

html[lang="en"] .footer-meta p {
  max-width: 52ch;
}

html[lang="en"] .footer-links a {
  font-size: 0.88rem;
}

@media (hover: hover) {
  .overview-item:hover {
    transform: translateX(3px);
    opacity: 0.92;
  }

  .faq-item summary:hover {
    color: rgba(245, 247, 251, 0.92);
    transform: translateX(2px);
  }

  .footer-directory .directory-links a:hover,
  .footer-links a:hover {
    color: var(--text);
    opacity: 0.9;
    transform: translateX(2px);
  }

  .footer-brand:hover {
    transform: translateY(-1px);
    opacity: 0.9;
  }
}

.faq-item summary:focus-visible,
.footer-directory .directory-links a:focus-visible,
.footer-links a:focus-visible,
.footer-brand:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.24);
  outline-offset: 2px;
}

.faq-item summary:active,
.footer-directory .directory-links a:active,
.footer-links a:active,
.footer-brand:active {
  transform: translateY(0);
}

html[data-theme="light"] .ghost-btn {
  color: var(--text);
  border-color: rgba(16, 18, 22, 0.1);
  background: rgba(16, 18, 22, 0.03);
}

html[data-theme="light"] .primary-btn {
  color: #101216;
  border-color: rgba(16, 18, 22, 0.08);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(16, 18, 22, 0.08);
}

html[data-theme="light"] .hero-body {
  color: rgba(16, 18, 22, 0.78);
}

html[data-theme="light"] .hero-proof-card,
html[data-theme="light"] .stage-image-wrap,
html[data-theme="light"] .stage-pills span,
html[data-theme="light"] .remote-actions span {
  border-color: rgba(16, 18, 22, 0.08);
  background: rgba(16, 18, 22, 0.03);
  color: rgba(16, 18, 22, 0.68);
}

html[data-theme="light"] .hero-proof-row {
  gap: 12px;
}

html[data-theme="light"] .hero-media-frame {
  border-color: rgba(120, 101, 77, 0.12);
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.94), rgba(241, 234, 224, 0.9)),
    linear-gradient(180deg, #f4efe6 0%, #ece5da 100%);
  box-shadow:
    0 22px 52px rgba(141, 119, 92, 0.1),
    0 8px 18px rgba(16, 18, 22, 0.04);
}

html[data-theme="light"] .hero-media-frame::before {
  background:
    radial-gradient(circle at top right, rgba(196, 171, 139, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(170, 186, 160, 0.1), transparent 30%);
}

html[data-theme="light"] .hero-media-dots span {
  background: rgba(16, 18, 22, 0.18);
}

html[data-theme="light"] .hero-media-label {
  color: rgba(16, 18, 22, 0.56);
}

html[data-theme="light"] .hero-video-wrap {
  border-color: rgba(120, 101, 77, 0.1);
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.96), rgba(238, 231, 220, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 10px 24px rgba(120, 101, 77, 0.06);
}

html[data-theme="light"] .hero-video {
  background: transparent;
}

html[data-theme="light"] .stage-window {
  border-color: rgba(16, 18, 22, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.92));
  box-shadow: 0 40px 120px rgba(16, 18, 22, 0.1);
}

html[data-theme="light"] .stage-dots span {
  background: rgba(16, 18, 22, 0.18);
}

html[data-theme="light"] .stage-label {
  color: rgba(16, 18, 22, 0.6);
}

html[data-theme="light"] .stage-main-card,
html[data-theme="light"] .panel-card,
html[data-theme="light"] .remote-board,
html[data-theme="light"] .remote-card,
html[data-theme="light"] .metric-card {
  border-color: rgba(16, 18, 22, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 48px rgba(16, 18, 22, 0.08);
  backdrop-filter: none;
}

html[data-theme="light"] .metric-card.accent,
html[data-theme="light"] .platform-card.highlight {
  background: linear-gradient(180deg, rgba(143, 154, 134, 0.1), rgba(255, 255, 255, 0.82));
}

html[data-theme="light"] .logo-band-inner {
  background: transparent;
  box-shadow: none;
}

html[data-theme="light"] .logo-band-inner p {
  color: rgba(16, 18, 22, 0.82);
}

html[data-theme="light"] .product-story-dark {
  color: var(--text-dark);
  background: var(--bg-light);
}

html[data-theme="light"] .product-story-dark .section-tag {
  color: rgba(52, 60, 49, 0.92);
  background: rgba(143, 154, 134, 0.16);
}

html[data-theme="light"] .story-beta {
  border-color: rgba(16, 18, 22, 0.08);
  background: rgba(147, 105, 33, 0.1);
  color: rgba(16, 18, 22, 0.74);
  box-shadow:
    inset 0 0 16px rgba(255, 255, 255, 0.3),
    0 0 0 1px rgba(147, 105, 33, 0.08),
    0 0 22px rgba(147, 105, 33, 0.16);
}

html[data-theme="light"] .story-beta::before {
  background: radial-gradient(circle, rgba(147, 105, 33, 0.18) 0%, rgba(147, 105, 33, 0) 74%);
}

html[data-theme="light"] .product-story-dark .story-copy p,
html[data-theme="light"] .product-story-dark .story-list li {
  color: var(--text-dark-soft);
}

html[data-theme="light"] .pricing-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, #ece8e1 100%);
}

html[data-theme="light"] .capability-card,
html[data-theme="light"] .platform-card,
html[data-theme="light"] .pricing-panel,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .cta-card,
html[data-theme="light"] .pricing-highlight {
  border-color: rgba(16, 18, 22, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

html[data-theme="light"] .capability-index {
  background: rgba(16, 18, 22, 0.06);
  color: rgba(16, 18, 22, 0.78);
}

html[data-theme="light"] .capability-media {
  border-color: rgba(16, 18, 22, 0.08);
  background:
    radial-gradient(circle at top left, rgba(143, 154, 134, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(248, 244, 236, 0.92), rgba(238, 232, 223, 0.9));
}

html[data-theme="light"] .capability-media::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(16, 18, 22, 0.04) 100%);
}

html[data-theme="light"] .overview-strip {
  gap: 14px;
}

html[data-theme="light"] .overview-item {
  background: transparent;
}

html[data-theme="light"] .pricing-table thead th {
  color: rgba(16, 18, 22, 0.56);
  background: rgba(16, 18, 22, 0.03);
}

html[data-theme="light"] .pricing-table tbody td {
  border-top-color: rgba(16, 18, 22, 0.08);
}

html[data-theme="light"] .featured-row {
  background: rgba(143, 154, 134, 0.06);
}

html[data-theme="light"] .cta-shell {
  border-top-color: rgba(16, 18, 22, 0.08);
  background: transparent;
  box-shadow: none;
}

html[data-theme="light"] .cta-shell .section-tag {
  color: rgba(52, 60, 49, 0.92);
  background: rgba(143, 154, 134, 0.16);
}

html[data-theme="light"] .cta-shell .cta-copy p {
  color: rgba(16, 18, 22, 0.66);
}

html[data-theme="light"] .cta-card .mini-label,
html[data-theme="light"] .platform-card .mini-label {
  color: rgba(52, 60, 49, 0.92);
  background: rgba(143, 154, 134, 0.16);
}

html[data-theme="light"] .cta-card-meta span,
html[data-theme="light"] .cta-card-caption {
  background: rgba(16, 18, 22, 0.05);
  color: rgba(16, 18, 22, 0.66);
}

html[data-theme="light"] .cta-card-action {
  border-top-color: rgba(16, 18, 22, 0.08);
}

html[data-theme="light"] .cta-card-action::after {
  color: rgba(16, 18, 22, 0.42);
}

html[data-theme="light"] .cta-card-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 235, 228, 0.88));
  border-color: rgba(16, 18, 22, 0.1);
}

html[data-theme="light"] .cta-card-dark .cta-card-caption {
  background: rgba(16, 18, 22, 0.04);
  color: rgba(16, 18, 22, 0.6);
}

html[data-theme="light"] .cta-card-dark .mini-label {
  color: rgba(16, 18, 22, 0.74);
  background: rgba(16, 18, 22, 0.04);
}

html[data-theme="light"] .cta-contact-email {
  color: rgba(16, 18, 22, 0.82);
}

html[data-theme="light"] .cta-contact-email:hover {
  color: rgba(16, 18, 22, 0.98);
  text-decoration-color: rgba(16, 18, 22, 0.34);
}

html[data-theme="light"] .cta-card-dark .cta-card-action {
  border-top-color: rgba(16, 18, 22, 0.08);
}

html[data-theme="light"] .cta-card-dark .cta-card-action::after {
  color: rgba(16, 18, 22, 0.42);
}

html[data-theme="light"] .footer-directory,
html[data-theme="light"] .site-footer {
  color: rgba(16, 18, 22, 0.82);
}

html[data-theme="light"] .directory-shell,
html[data-theme="light"] .footer-shell {
  border-top-color: rgba(16, 18, 22, 0.08);
}

html[data-theme="light"] .directory-lead p,
html[data-theme="light"] .footer-meta p {
  color: rgba(16, 18, 22, 0.68);
}

html[data-theme="light"] .footer-directory .directory-row {
  border-top-color: rgba(16, 18, 22, 0.08);
}

html[data-theme="light"] .directory-label {
  color: rgba(16, 18, 22, 0.46);
}

html[data-theme="light"] .footer-brand,
html[data-theme="light"] .directory-column a,
html[data-theme="light"] .footer-links a {
  color: rgba(16, 18, 22, 0.78);
}

html[data-theme="light"] .footer-directory .directory-links a:hover,
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .footer-brand:hover,
html[data-theme="light"] .directory-column a:hover,
html[data-theme="light"] .faq-item summary:hover,
html[data-theme="light"] .overview-item:hover {
  color: #101216;
}

html[data-theme="light"] .faq-item summary:focus-visible,
html[data-theme="light"] .footer-directory .directory-links a:focus-visible,
html[data-theme="light"] .footer-links a:focus-visible,
html[data-theme="light"] .footer-brand:focus-visible {
  outline-color: rgba(16, 18, 22, 0.2);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero-shell,
  .story-grid,
  .story-grid.reverse,
  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

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

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

  .cta-card-dark {
    grid-column: span 1;
  }

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

  .media-showcase-shell {
    grid-template-columns: 1fr;
  }

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

  .footer-directory .directory-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1366px) and (min-width: 961px) {
  .shell {
    width: min(var(--shell), calc(100% - 56px));
  }

  .hero {
    padding: 24px 0 60px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 28px;
    min-height: calc(100vh - 104px);
  }

  .hero h1.hero-title {
    font-size: clamp(2.35rem, 3.55vw, 3.72rem);
  }

  html[lang="en"] .hero h1.hero-title {
    font-size: clamp(2.18rem, 3.18vw, 3.32rem);
  }

  .hero-body {
    max-width: 43ch;
    font-size: 0.92rem;
  }

  .hero-media-frame {
    width: min(100%, 680px);
  }

  .hero-video-wrap {
    aspect-ratio: 16 / 9;
  }

  .hero-actions {
    margin: 24px 0 20px;
  }

  .hero-proof-card {
    padding: 14px 14px 15px;
    min-height: 94px;
  }

  .hero-proof-card strong {
    max-width: none;
    font-size: 0.9rem;
  }

  .stage-window {
    padding: 14px;
  }

  .stage-grid {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
  }

  .stage-main-card,
  .metric-card,
  .panel-card,
  .remote-card {
    padding: 18px;
  }

  .stage-main-card h2 {
    font-size: clamp(1.45rem, 1.7vw, 1.82rem);
  }

  html[lang="en"] .stage-main-card h2 {
    font-size: clamp(1.34rem, 1.52vw, 1.62rem);
    max-width: 23ch;
  }

  .stage-image-wrap {
    padding: 14px;
  }

  .stage-image-wrap img {
    max-height: 272px;
  }

  .logo-band {
    padding: 12px 0 30px;
  }

  .logo-band-inner {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 20px;
  }

  .logo-list {
    gap: 10px;
  }

  .logo-item {
    height: 52px;
  }

  .statement-section,
  .product-story,
  .control-section,
  .pricing-section {
    padding: 88px 0;
  }

  .faq-section {
    padding: 18px 0 84px;
  }

  .statement-head {
    max-width: 780px;
  }

  .statement-head h2,
  .story-copy h2,
  .pricing-copy h2,
  .cta-copy h2 {
    font-size: clamp(1.95rem, 2.95vw, 3.28rem);
  }

  html[lang="en"] .statement-head h2,
  html[lang="en"] .story-copy h2,
  html[lang="en"] .pricing-copy h2,
  html[lang="en"] .cta-copy h2 {
    font-size: clamp(1.82rem, 2.44vw, 2.72rem);
  }

  .capability-grid,
  .platform-grid {
    gap: 14px;
    margin-top: 40px;
  }

  .capability-card,
  .platform-card,
  .faq-item,
  .cta-card {
    padding: 20px;
  }

  .story-grid,
  .story-grid.reverse,
  .pricing-shell {
    gap: 24px;
  }

  .story-copy p {
    max-width: 48ch;
  }

  .story-list {
    gap: 12px;
  }

  .pricing-highlight {
    max-width: 100%;
  }

  .cta-shell {
    width: min(1360px, calc(100% - 32px));
  }

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

  .cta-card {
    min-height: 216px;
  }

  .directory-shell {
    width: min(1520px, calc(100% - 28px));
  }

  .footer-shell {
    width: min(1440px, calc(100% - 28px));
  }

  .footer-directory .directory-row {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
  }

  html[lang="en"] .footer-directory .directory-row {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .footer-directory .directory-links {
    gap: 10px 18px;
  }
}

@media (min-width: 1181px) {
  .directory-lead {
    flex-wrap: nowrap;
  }

  .directory-lead p {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .utility-switchers {
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(10, 12, 16, 0.96);
  }

  html[data-theme="light"] .main-nav {
    background: rgba(249, 245, 238, 0.98);
    box-shadow: 0 18px 42px rgba(16, 18, 22, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

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

  .hero-proof-row,
  .capability-grid,
  .platform-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid-five .platform-card:nth-child(4),
  .platform-grid-five .platform-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }

  html[lang="en"] .hero-shell {
    grid-template-columns: 1fr;
  }

  .cta-card-dark {
    grid-column: span 1;
  }

  .overview-strip {
    grid-template-columns: 1fr;
  }

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

  .cta-community-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .logo-band-inner {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .logo-band-inner p {
    max-width: none;
    text-align: center;
  }

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

  .media-slot {
    min-height: 240px;
  }

  .panel-row {
    grid-template-columns: 1fr;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tbody td {
    padding: 16px 20px;
  }

  .pricing-table tr {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pricing-table tr:first-child {
    border-top: 0;
  }

}

@media (max-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .hero-media-frame {
    width: 100%;
    margin-left: 0;
    padding: 12px;
  }

  .hero-video-wrap {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .utility-switchers {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .theme-switcher,
  .language-switcher {
    margin-left: 0;
  }

  .site-header {
    position: static;
  }

  .hero {
    padding: 18px 0 56px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .hero h1,
  .statement-head h2,
  .story-copy h2,
  .pricing-copy h2,
  .cta-copy h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero h1.hero-title {
    font-size: clamp(2rem, 11vw, 3.1rem);
    line-height: 1.03;
  }

  html[lang="en"] .hero h1.hero-title {
    max-width: none;
    font-size: clamp(1.86rem, 9.3vw, 2.68rem);
    line-height: 1.06;
  }

  html[lang="en"] .hero-body {
    max-width: none;
    font-size: 0.94rem;
  }

  html[lang="en"] .faq-title,
  html[lang="en"] .cta-title-split {
    max-width: none;
  }

  .stage-main-card,
  .metric-card,
  .capability-card,
  .platform-card,
  .faq-item,
  .cta-card,
  .pricing-highlight {
    padding: 20px;
  }

  .statement-section,
  .product-story,
  .control-section,
  .pricing-section,
  .faq-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .faq-section {
    padding-top: 20px;
  }

  .cta-section {
    padding: 14px 0 28px;
  }

  .cta-shell {
    width: min(1360px, calc(100% - 16px));
    padding: 18px 0 0;
    border-radius: 0;
  }

  .footer-shell {
    width: min(1440px, calc(100% - 14px));
    flex-direction: column;
    align-items: flex-start;
  }

  .directory-shell {
    width: min(1520px, calc(100% - 14px));
    gap: 22px;
    padding-top: 28px;
  }

  .footer-meta,
  .directory-lead {
    align-items: flex-start;
  }

  .directory-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-directory .directory-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .footer-directory .directory-row .directory-label {
    min-height: auto;
  }

  .footer-directory .directory-links {
    gap: 8px 14px;
  }

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