:root {
  --bg: #070b12;
  --bg-alt: #0d1420;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef2f8;
  --text-muted: #8b97ab;
  --accent: #3dffa8;
  --accent-dim: rgba(61, 255, 168, 0.15);
  --accent-glow: rgba(61, 255, 168, 0.35);
  --warning: #ffb347;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --header-h: 72px;
  --container: min(1140px, calc(100% - 2rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: "Instrument Sans", "Segoe UI", Arial, sans-serif;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(61, 255, 168, 0.18), transparent 70%);
}

.orb-2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.12), transparent 70%);
}

main,
.header,
.footer {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 18, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  direction: ltr;
  unicode-bidi: isolate;
}

.logo-mark {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

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

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

.nav a.is-active,
.mobile-nav a.is-active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--surface-hover);
}

.lang-option.active {
  color: var(--accent);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 18, 0.95);
}

.mobile-nav a {
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav.open {
  display: flex !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #04140c;
  box-shadow: 0 0 0 1px rgba(61, 255, 168, 0.2), 0 12px 40px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(61, 255, 168, 0.35), 0 16px 48px var(--accent-glow);
}

.btn-ghost {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

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

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #7affc8 50%, #a8ffe0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 52ch;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1.2;
}

.stat span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Pipeline card */
.pipeline-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.pipeline-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.badge-live {
  margin-inline-start: auto;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pipeline-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.flow-node {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  white-space: nowrap;
}

.flow-node.accent {
  border-color: rgba(61, 255, 168, 0.25);
  color: #c8ffe4;
}

.flow-node.highlight {
  background: var(--accent);
  color: #04140c;
  font-weight: 700;
  border-color: transparent;
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
}

body[dir="rtl"] .flow-arrow {
  transform: scaleX(-1);
}

.pipeline-assistant {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.assistant-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.assistant-bubble {
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.assistant-result {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.tag.ok {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(61, 255, 168, 0.25);
}

/* Logos */
.logos {
  padding: 2rem 0 3rem;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.logos-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.logo-row span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* AI logo carousel (landing) */
.ai-logos-section {
  position: relative;
  z-index: 1;
  padding-block: 2.25rem 2.75rem;
  isolation: isolate;
}

.ai-logos-section .logos-label {
  margin-bottom: 1.5rem;
}

.ai-logo-carousel {
  position: relative;
  width: 100%;
}

.ai-logo-carousel-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.ai-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ai-logo-marquee 36s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.ai-logo-set {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  flex-shrink: 0;
  padding-inline: clamp(0.75rem, 2vw, 1.25rem);
}

.ai-logo-item {
  margin: 0;
  flex-shrink: 0;
}

.ai-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 8px 24px rgba(0, 0, 0, 0.28);
}

.ai-logo-carousel-mask:hover .ai-logo-track {
  animation-play-state: paused;
}

.ai-logo-chip img {
  display: block;
  height: 42px;
  width: auto;
  max-width: none;
  object-fit: contain;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.ai-logo-item:hover .ai-logo-chip {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(0, 0, 0, 0.34);
}

@keyframes ai-logo-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-logo-track {
    animation: none;
    justify-content: center;
    width: auto;
    margin-inline: auto;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ai-logo-carousel-mask {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .ai-logo-set:nth-child(n + 2) {
    display: none;
  }

  .ai-logo-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1rem;
    gap: 0.85rem;
  }
}

@media (max-width: 720px) {
  .ai-logo-set {
    gap: 0.75rem;
    padding-inline: 0.5rem;
  }

  .ai-logo-chip {
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
  }

  .ai-logo-chip img {
    height: 34px;
  }
}

.size-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.size-tier {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.size-tier-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-tier h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.size-tier p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.sizes-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

@media (max-width: 768px) {
  .size-tiers {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 50%, transparent);
}

.page-first {
  padding-top: clamp(5rem, 10vw, 7rem);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.section-head h1,
.saas-copy h1,
.cta-copy h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.format-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.format-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 600;
}

.format-pill.muted {
  color: var(--text-muted);
  font-weight: 500;
}

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

.metric-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 255, 168, 0.2);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.metric-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.metric-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), transparent);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* SaaS section */
.saas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-weight: 700;
}

.saas-window {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #0a1019;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.window-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.window-bar span:first-child { background: #ff6b6b; }
.window-bar span:nth-child(2) { background: var(--warning); }
.window-bar span:nth-child(3) { background: var(--accent); }

.window-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 280px;
}

.window-sidebar {
  padding: 1rem 0.75rem;
  border-inline-end: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-item {
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sidebar-item.active {
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
}

.window-main {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.mini-stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.mini-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.mini-stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
}

.mini-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 100px;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.bar {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: rgba(255, 255, 255, 0.12);
  animation: growBar 1s var(--ease) backwards;
}

.bar.accent {
  background: linear-gradient(180deg, var(--accent), rgba(61, 255, 168, 0.4));
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes growBar {
  from { height: 0; opacity: 0; }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.testimonial p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial footer strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial footer span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact */
.cta-section {
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-chips span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(61, 255, 168, 0.4);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-note {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-success {
  margin: 1rem 0 0;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  color: var(--accent);
  text-align: center;
  font-weight: 600;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 28ch;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-links a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .header-actions .btn-sm {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .saas-split,
  .cta-grid,
  .metric-cards,
  .feature-grid,
  .testimonial-grid,
  .pillars,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    border-inline-end: none;
    border-bottom: 1px solid var(--border);
  }

  .sidebar-item {
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .pipeline-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  body[dir="rtl"] .flow-arrow {
    transform: rotate(90deg) scaleX(-1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot, .bar, .wf-packet { animation: none; }
  .wf-packet { display: none; }
}

/* Assessment landing layout */
.hero-assessment {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero-assessment-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-assessment-copy {
  text-align: start;
}

.hero-assessment h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subhook {
  margin: 0 0 2rem;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

/* Workflow visual (from axiom.html) */
.hero-visual.workflow-visual {
  direction: ltr;
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-alt), var(--bg));
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-grid .hero-visual.workflow-visual {
  max-width: none;
}

.hv-frame {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hv-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hv-lights {
  display: flex;
  gap: 5px;
}

.hv-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.hv-lights span:nth-child(2) {
  background: var(--warning);
}

.hv-lights span:nth-child(3) {
  background: var(--accent);
  animation: pulse 2.4s infinite;
}

.hv-bar-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hv-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

.hv-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
}

.hv-canvas {
  flex: 1;
  position: relative;
  min-height: 0;
}

.hv-canvas svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wf-node {
  fill: var(--bg-alt);
  stroke: var(--border);
  stroke-width: 1;
}

.wf-node--active {
  stroke: var(--accent);
}

.wf-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  fill: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wf-label--accent {
  fill: var(--accent);
}

.wf-value {
  font-family: var(--font-display);
  font-size: 18px;
  fill: var(--text);
  font-weight: 600;
}

.wf-value--lg {
  font-size: 22px;
  font-weight: 700;
}

.wf-edge {
  fill: none;
  stroke: rgba(238, 242, 248, 0.14);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.wf-packet {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px var(--accent-glow));
}

.wf-pulse-dot {
  fill: var(--accent);
}

.wf-progress-bg {
  fill: var(--border);
}

.wf-progress-fill {
  fill: var(--accent);
}

.hv-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.hv-meta div {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hv-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
  text-transform: none;
}

@media (max-width: 960px) {
  .hero-assessment-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-assessment-copy {
    text-align: center;
  }

  .hero-subhook {
    margin-inline: auto;
  }

  .hero-cta-stack {
    align-items: center;
  }

  .cta-bullets {
    justify-content: center;
  }

  .hero-visual.workflow-visual {
    max-width: min(100%, 440px);
  }
}

@media (max-width: 720px) {
  .hero-assessment h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .hv-meta strong {
    font-size: 1.15rem;
  }
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.cta-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-bullets li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.value-pillar {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.pillar-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.value-pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.value-pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.mid-cta {
  text-align: center;
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.cred-stats {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cred-stat {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.cred-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.cred-stat span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cred-research {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
}

.cred-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent);
}

.cred-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(61, 255, 168, 0.25);
}

.cred-card h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.cta-banner {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(135deg, rgba(61, 255, 168, 0.08), rgba(61, 255, 168, 0.02));
  border-block: 1px solid rgba(61, 255, 168, 0.15);
}

.cta-banner-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.cta-banner p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

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

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

.footer-assess {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-assess:hover {
  text-decoration: underline;
}

body.quiz-open {
  overflow: hidden;
}

/* Assessment overlay */
.assessment-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4, 8, 14, 0.88);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.assessment-overlay[hidden] {
  display: none !important;
}

.quiz-panel,
.quiz-results {
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: #0b111a;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.quiz-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.quiz-close {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.quiz-progress-wrap {
  margin-bottom: 1.25rem;
}

.quiz-progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.quiz-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #7affc8);
  transition: width 0.35s var(--ease);
}

.quiz-progress-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.quiz-step-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
}

.quiz-intro,
.quiz-hint {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quiz-field {
  display: block;
  margin-bottom: 1rem;
}

.quiz-field span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quiz-field input,
.quiz-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-options--binary {
  flex-direction: row;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.quiz-options--binary .quiz-option {
  flex: 1;
  justify-content: center;
}

.quiz-option.selected {
  border-color: rgba(61, 255, 168, 0.45);
  background: var(--accent-dim);
}

.quiz-option input {
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.quiz-results .results-name {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.score-wrap {
  margin-bottom: 1.25rem;
}

.score-gauge {
  height: 12px;
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.score-gauge-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #7affc8);
  transition: width 1s var(--ease);
}

.score-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.score-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.score-tier {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.score-tier--hot {
  background: var(--accent-dim);
  color: var(--accent);
}

.score-tier--warm {
  background: rgba(255, 179, 71, 0.15);
  color: var(--warning);
}

.score-tier--cold {
  background: rgba(120, 140, 180, 0.15);
  color: #a8b8d0;
}

.results-reveal {
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.results-insights {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.results-insights li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.results-insights li:last-child {
  border-bottom: none;
}

.results-insights strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.results-insights span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.results-next {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.results-next h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.results-next p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.results-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Platform hub & product pages */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  min-height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface), transparent);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 255, 168, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.platform-card--featured {
  border-color: rgba(61, 124, 107, 0.45);
  background: linear-gradient(160deg, rgba(61, 124, 107, 0.12), transparent);
}

.platform-card--omerx {
  border-color: rgba(61, 154, 138, 0.35);
  background: linear-gradient(160deg, rgba(61, 154, 138, 0.1), transparent);
}

.platform-card--shiatsu {
  border-color: rgba(52, 211, 153, 0.32);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.65), rgba(52, 211, 153, 0.06));
}

.platform-card-badge--education {
  border-color: rgba(165, 180, 252, 0.45);
  color: #a5b4fc;
}

.platform-card-badge--salon {
  border-color: rgba(61, 154, 138, 0.45);
  color: #5ec4b0;
}

.platform-card--alexchat {
  border-color: rgba(200, 169, 106, 0.35);
  background: linear-gradient(160deg, rgba(200, 169, 106, 0.08), transparent);
}

.platform-card-badge--community {
  border-color: rgba(200, 169, 106, 0.45);
  color: #f0d28e;
}

.platform-card--birkat {
  border-color: rgba(129, 115, 110, 0.4);
  background: linear-gradient(160deg, rgba(37, 53, 57, 0.35), transparent);
}

.platform-card--newpan {
  border-color: rgba(90, 159, 212, 0.35);
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.55), transparent);
}

.platform-card-badge--dealer {
  border-color: rgba(90, 159, 212, 0.45);
  color: #8ec4f0;
}

.platform-card-badge--retail {
  border-color: rgba(129, 115, 110, 0.5);
  color: #c4b8b3;
}

.platform-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.platform-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(61, 255, 168, 0.1);
  color: var(--accent);
}

.platform-card-mark--flow {
  background: rgba(120, 160, 255, 0.12);
  color: #8cb4ff;
}

.platform-card-mark--ops {
  background: rgba(255, 180, 80, 0.12);
  color: #ffb84d;
}

.platform-card-logo {
  border-radius: 8px;
}

.platform-card-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-card-badge--live {
  border-color: rgba(61, 124, 107, 0.5);
  color: #6ecfae;
}

.platform-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.platform-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.platform-card-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.product-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.product-back:hover {
  color: var(--accent);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

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

.product-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34rem;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.product-chips span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.product-cta-row,
.product-cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.product-cta-stack {
  flex-direction: column;
  align-items: stretch;
}

.product-hero--b2c .section-tag {
  color: #6ecfae;
}

.btn-b2c {
  background: linear-gradient(135deg, #3d7c6b, #2f6355);
  border-color: transparent;
}

.btn-b2c:hover {
  filter: brightness(1.08);
}

.product-hero--omerx .section-tag {
  color: #5ec4b0;
}

.btn-omerx {
  background: linear-gradient(135deg, #3d9a8a, #2f7a6d);
  border-color: transparent;
}

.btn-omerx:hover {
  filter: brightness(1.08);
}

.omerx-dashboard {
  display: flex;
  justify-content: center;
}

.omerx-window {
  width: min(100%, 26rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(61, 154, 138, 0.35);
  background: linear-gradient(180deg, rgba(15, 22, 20, 0.95), rgba(10, 14, 13, 0.98));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.omerx-window .window-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.omerx-window .window-bar span:nth-child(-n+3) {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.omerx-window-title {
  margin-inline-start: auto;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.omerx-queue-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.omerx-queue-col h4 {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.omerx-queue-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.6rem;
  margin-bottom: 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
}

.omerx-queue-item span:first-child {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.omerx-queue-col--active .omerx-queue-item.is-live {
  border-color: rgba(61, 154, 138, 0.55);
  background: rgba(61, 154, 138, 0.12);
}

.omerx-window-footer {
  padding: 0.55rem 1rem;
  border-top: 1px solid var(--border);
  color: #5ec4b0;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.omerx-stack-strip {
  align-self: center;
}

.product-hero--alexchat .section-tag {
  color: #f0d28e;
}

.btn-alexchat {
  background: linear-gradient(135deg, #a8864a, #7a6235);
  border-color: transparent;
}

.btn-alexchat:hover {
  filter: brightness(1.08);
}

.alexchat-dashboard {
  display: flex;
  justify-content: center;
}

.alexchat-window {
  width: min(100%, 26rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(200, 169, 106, 0.35);
  background: linear-gradient(180deg, rgba(18, 16, 12, 0.95), rgba(11, 10, 8, 0.98));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.alexchat-window .window-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.alexchat-window .window-bar span:nth-child(-n+3) {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.alexchat-window-title {
  margin-inline-start: auto;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.alexchat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem 1rem 0.5rem;
}

.alexchat-stat {
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.alexchat-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f0d28e;
}

.alexchat-stat-lbl {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.alexchat-stat--warn .alexchat-stat-val {
  color: #f0b740;
}

.alexchat-feed {
  padding: 0.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.alexchat-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
  line-height: 1.4;
}

.alexchat-feed-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.5);
}

.alexchat-feed-item.is-live {
  border-color: rgba(200, 169, 106, 0.45);
  background: rgba(200, 169, 106, 0.08);
}

.alexchat-feed-item.is-live .alexchat-feed-dot {
  background: #34c08a;
  box-shadow: 0 0 8px rgba(52, 192, 138, 0.5);
}

.alexchat-window-footer {
  padding: 0.55rem 1rem;
  border-top: 1px solid var(--border);
  color: #f0d28e;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.alexchat-stack-strip {
  align-self: center;
}

.product-hero--birkat .section-tag {
  color: #c4b8b3;
}

.btn-birkat {
  background: linear-gradient(135deg, #81736e, #5c524e);
  border-color: transparent;
}

.btn-birkat:hover {
  filter: brightness(1.08);
}

.birkat-trio {
  display: grid;
  gap: 0.75rem;
}

.birkat-surface {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(129, 115, 110, 0.35);
  background: linear-gradient(180deg, rgba(37, 53, 57, 0.55), rgba(15, 18, 20, 0.95));
  overflow: hidden;
}

.birkat-surface-label {
  display: block;
  padding: 0.45rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: #c4b8b3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.birkat-surface-body {
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.birkat-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.birkat-row .muted {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.birkat-row--accent {
  color: #e5dee8;
}

.birkat-surface--shop {
  border-color: rgba(229, 222, 232, 0.2);
}

.birkat-cart-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.birkat-cart-total {
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: #e5dee8;
}

.birkat-surface--bot {
  border-color: rgba(61, 124, 107, 0.35);
}

.birkat-chat {
  gap: 0.45rem;
}

.birkat-bubble {
  max-width: 92%;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.4;
}

.birkat-bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.birkat-bubble--out {
  align-self: flex-end;
  background: rgba(61, 124, 107, 0.2);
  border: 1px solid rgba(61, 124, 107, 0.35);
  color: #d4f0e4;
}

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

.birkat-stack-strip {
  align-self: center;
}

.product-hero--newpan .section-tag {
  color: #8ec4f0;
}

.btn-newpan {
  background: linear-gradient(135deg, #1a1a1a, #2d4a66);
  border-color: rgba(90, 159, 212, 0.35);
}

.btn-newpan:hover {
  filter: brightness(1.1);
}

.newpan-duo {
  display: grid;
  gap: 0.75rem;
}

.newpan-panel {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(90, 159, 212, 0.28);
  background: linear-gradient(180deg, rgba(20, 24, 30, 0.7), rgba(8, 8, 10, 0.95));
  overflow: hidden;
}

.newpan-panel-label {
  display: block;
  padding: 0.45rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: #8ec4f0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newpan-panel-body {
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.newpan-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.newpan-row--muted {
  color: var(--text-muted);
}

.newpan-in-stock {
  color: #6ecfae;
  font-size: 0.72rem;
  font-weight: 600;
}

.newpan-panel--chat {
  border-color: rgba(61, 124, 107, 0.35);
}

.newpan-chat {
  gap: 0.45rem;
}

.newpan-bubble {
  max-width: 92%;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.4;
}

.newpan-bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.newpan-bubble--out {
  align-self: flex-end;
  background: rgba(90, 159, 212, 0.15);
  border: 1px solid rgba(90, 159, 212, 0.35);
  color: #d4e8f8;
}

.newpan-stack-strip {
  align-self: center;
}

.product-hero--shiatsu .section-tag {
  color: #6ee7b7;
}

.btn-shiatsu {
  background: linear-gradient(135deg, #059669, #312e81);
  border-color: rgba(52, 211, 153, 0.35);
}

.btn-shiatsu:hover {
  filter: brightness(1.1);
}

.shiatsu-duo {
  display: grid;
  gap: 0.75rem;
}

.shiatsu-panel {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(8, 12, 20, 0.95));
  overflow: hidden;
}

.shiatsu-panel-label {
  display: block;
  padding: 0.45rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: #6ee7b7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shiatsu-panel-body {
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.shiatsu-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.shiatsu-topic--active {
  color: #e2e8f0;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.shiatsu-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.5);
  flex-shrink: 0;
}

.shiatsu-topic--active .shiatsu-dot {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

.shiatsu-panel--chat {
  border-color: rgba(165, 180, 252, 0.32);
}

.shiatsu-panel--chat .shiatsu-panel-label {
  color: #c4b5fd;
}

.shiatsu-chat {
  gap: 0.45rem;
}

.shiatsu-bubble {
  max-width: 92%;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.shiatsu-bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.shiatsu-bubble--out {
  align-self: flex-end;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #d1fae5;
}

.shiatsu-stack-strip {
  align-self: center;
}

@media (min-width: 1100px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.b2c-phone-frame {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(61, 124, 107, 0.35);
  background: #0b1410;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  direction: ltr;
}

.b2c-phone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #075e54;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.b2c-wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}

.b2c-phone-chat {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 280px;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(61, 124, 107, 0.08), transparent 40%),
    #0e1713;
}

.b2c-bubble {
  max-width: 85%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.b2c-bubble--in {
  align-self: flex-start;
  background: #1f2c27;
  color: #e8eee9;
  border-bottom-left-radius: 4px;
}

.b2c-bubble--out {
  align-self: flex-end;
  background: #005c4b;
  color: #ecf7f2;
  border-bottom-right-radius: 4px;
}

.b2c-bubble--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 3.5rem;
  padding-inline: 0.85rem;
}

.b2c-bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: b2c-typing 1.2s infinite ease-in-out;
}

.b2c-bubble--typing span:nth-child(2) { animation-delay: 0.15s; }
.b2c-bubble--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes b2c-typing {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.b2c-phone-bar {
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #6ecfae;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.step-num {
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 124, 107, 0.35);
  background: linear-gradient(160deg, rgba(61, 124, 107, 0.1), transparent);
}

.pricing-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pricing-card-head span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card-head strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.pricing-card-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.pricing-card-list li {
  position: relative;
  padding-inline-start: 1.4rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pricing-card-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: #6ecfae;
  font-weight: 700;
}

/* Team page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.team-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent);
  text-align: center;
}

.team-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.team-avatar {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(61, 255, 168, 0.25);
  background: var(--accent-dim);
  display: grid;
  place-items: center;
}

.team-initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(61, 255, 168, 0.1);
  border: 1px solid rgba(61, 255, 168, 0.2);
}

.team-name {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.team-bio {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .value-pillars,
  .credibility-grid,
  .feature-grid--3,
  .platform-grid,
  .product-hero-grid,
  .steps-grid,
  .birkat-surfaces-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .quiz-options--binary {
    flex-direction: column;
  }
}
