:root {
  --bg-0: #05070d;
  --bg-1: #070b14;
  --bg-2: #0a0f1a;
  --surface-0: rgba(8, 12, 20, 0.9);
  --surface-1: rgba(10, 15, 26, 0.92);
  --surface-2: rgba(14, 20, 33, 0.94);
  --surface-3: rgba(17, 24, 38, 0.96);
  --surface-sheen: rgba(255, 255, 255, 0.05);
  --surface-sheen-soft: rgba(255, 255, 255, 0.022);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(107, 163, 255, 0.28);
  --text: #f5f7fb;
  --text-soft: #b8c2d6;
  --text-muted: #7e8aa3;
  --accent: #4c8dff;
  --accent-hover: #6ba3ff;
  --accent-deep: #1e4ed8;
  --accent-violet: #6f35ff;
  --indigo: #2d3f8f;
  --glow-blue-soft: rgba(76, 141, 255, 0.14);
  --glow-blue: rgba(76, 141, 255, 0.22);
  --glow-indigo: rgba(45, 63, 143, 0.22);
  --glow-ice: rgba(255, 255, 255, 0.05);
  --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 24px 56px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.24);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shell: 1240px;
  --space-section: clamp(72px, 7vw, 88px);
  --space-section-hero-top: clamp(98px, 10vw, 118px);
  --space-section-hero-bottom: clamp(64px, 7vw, 78px);
  --space-card: clamp(22px, 2.6vw, 28px);
  --title-display: clamp(3.1rem, 6vw, 4.9rem);
  --title-section: clamp(2.15rem, 4.1vw, 3.1rem);
  --text-lead: clamp(1rem, 1.2vw, 1.12rem);
  --text-body: 1rem;
  --text-small: 0.92rem;
  --font-heading: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Noto Sans Arabic", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body[data-active-lang="ar"] {
  font-family: var(--font-ar);
}

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

button {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(760px circle at 78% 14%, rgba(76, 141, 255, 0.14), rgba(76, 141, 255, 0) 22%),
    radial-gradient(900px circle at 72% 10%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    radial-gradient(1080px circle at 18% 6%, rgba(45, 63, 143, 0.17), rgba(45, 63, 143, 0) 30%),
    radial-gradient(720px circle at 52% 44%, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #03050a 0%, #05070d 32%, #04060a 100%);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(1, 2, 6, 0.06) 0%, rgba(2, 4, 8, 0.12) 38%, rgba(1, 2, 6, 0.32) 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 78%);
  opacity: 0.14;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(4, 6, 12, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 64px;
  height: auto;
}

.brand-logo-footer {
  width: 56px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(7, 11, 18, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn.is-active {
  color: #fff;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 44%),
    linear-gradient(155deg, rgba(107, 163, 255, 0.92) 0%, rgba(73, 104, 255, 0.9) 42%, rgba(111, 53, 255, 0.94) 100%);
  box-shadow:
    0 12px 28px rgba(16, 36, 84, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.ghost-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ghost-btn,
.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e1e8f5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(10, 14, 22, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.primary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 86% 100%, rgba(45, 63, 143, 0.28), rgba(45, 63, 143, 0) 52%),
    linear-gradient(155deg, rgba(107, 163, 255, 0.96) 0%, rgba(70, 98, 255, 0.94) 38%, rgba(111, 53, 255, 0.94) 100%);
  box-shadow:
    0 22px 54px rgba(13, 31, 72, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.ghost-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(107, 163, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(12, 16, 26, 0.84);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 26px 62px rgba(13, 31, 72, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.primary-btn:active,
.secondary-btn:active,
.ghost-btn:active {
  transform: translateY(0) scale(0.99);
}

.lang-panel {
  display: none;
}

.lang-panel.is-active {
  display: block;
}

.section {
  padding: 52px 20px;
}

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

.hero {
  padding-top: 58px;
}

.hero-grid,
.compare-grid,
.demo-shell,
.proof-shell {
  display: grid;
  gap: 32px;
}

.hero-copy h1,
.section-head h2,
.proof-copy h2,
.final-cta-card h2 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(2.8rem, 7.2vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.section-head h2,
.proof-copy h2,
.final-cta-card h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-subhead,
.section-head p,
.proof-copy p,
.card p,
.feature-card p,
.workflow-step p,
.compare-card li,
.final-cta-card p,
.faq-list p,
.demo-copy p,
.form-intro,
.audience-card {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.eyebrow,
.visual-label,
.mini-label,
.system-label {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #98bcff;
}

.hero-subhead {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.12rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.cta-row.center {
  align-items: center;
}

.trust-line {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(226, 233, 246, 0.82);
  font-size: 0.92rem;
  line-height: 1.58;
}

.hero-metadata {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hero-metadata span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #d7e2f4;
  font-size: 0.88rem;
}

.hero-metadata span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(76, 141, 255, 0.12);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 22px;
  overflow: hidden;
  min-height: 0;
  padding: 32px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 76% 18%, rgba(76, 141, 255, 0.1), rgba(76, 141, 255, 0) 28%),
    radial-gradient(circle at 56% 74%, rgba(45, 63, 143, 0.14), rgba(45, 63, 143, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(10, 14, 22, 0.98) 0%, rgba(5, 8, 15, 0.98) 100%);
  box-shadow: var(--shadow-deep);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 48%, rgba(76, 141, 255, 0.14), rgba(76, 141, 255, 0) 22%),
    radial-gradient(circle at 52% 46%, rgba(45, 63, 143, 0.2), rgba(45, 63, 143, 0) 34%),
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 24%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  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: 68px 68px;
  opacity: 0.1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 92%);
}

.hero-light {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero-light-one {
  width: 300px;
  height: 300px;
  top: -20px;
  right: 12px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle, rgba(76, 141, 255, 0.14), rgba(76, 141, 255, 0) 68%);
}

.hero-light-two {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: 34%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle, rgba(45, 63, 143, 0.18), rgba(45, 63, 143, 0) 70%);
}

.hero-route {
  display: none;
  position: absolute;
  inset: 50% 18% auto 18%;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(76, 141, 255, 0.6) 50%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(-50%);
  opacity: 0.62;
  animation: flowPulse 4.6s ease-in-out infinite;
}

.hero-route::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 18%;
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(76, 141, 255, 0), rgba(255, 255, 255, 0.22), rgba(107, 163, 255, 0.92), rgba(76, 141, 255, 0));
  transform: translateY(-50%);
  filter: blur(0.7px);
  animation: flowTravel 4.6s ease-in-out infinite;
}

.lead-message-card,
.outcome-card {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 100% 100%, rgba(45, 63, 143, 0.12), rgba(45, 63, 143, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    rgba(8, 12, 20, 0.95);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.outcome-card {
  display: grid;
  gap: 12px;
}

.lead-message-card::before,
.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(107, 163, 255, 0.24), rgba(255, 255, 255, 0));
  opacity: 0.76;
  pointer-events: none;
}

.lead-message-card {
  justify-self: center;
}

.outcome-card {
  justify-self: center;
}

.message-bubble {
  position: relative;
  margin-top: 10px;
  padding: 14px 14px 14px 38px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.02);
}

.message-bubble p {
  margin: 0;
  color: #edf2fb;
  font-size: 1.02rem;
  line-height: 1.38;
  text-wrap: balance;
}

.outcome-copy {
  margin: 0;
  color: #edf2fb;
  font-size: 0.98rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.outcome-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 163, 255, 0.2);
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 44%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.14), rgba(45, 63, 143, 0.08) 58%, rgba(255, 255, 255, 0.01) 100%),
    rgba(11, 16, 26, 0.98);
  color: #dce8ff;
  font-size: 0.84rem;
  line-height: 1.4;
  text-wrap: balance;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.outcome-cta:hover,
.outcome-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(107, 163, 255, 0.32);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  outline: none;
}

.lead-context,
.lead-footnote,
.system-context,
.outcome-context {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.lead-context {
  margin: -4px 0 0;
}

.lead-footnote {
  margin-top: 12px;
}

.system-context {
  max-width: 186px;
  color: #d1dbef;
}

.outcome-context {
  margin-top: -4px;
}

.bubble-dot {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(76, 141, 255, 0.12);
}

.outcome-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.outcome-action {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.018);
  color: #edf2fb;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.outcome-action span {
  font-size: 0.97rem;
  line-height: 1.3;
}

.outcome-action strong {
  flex-shrink: 0;
  color: #93bbff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.outcome-action:hover,
.outcome-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(107, 163, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(255, 255, 255, 0.008)),
    rgba(11, 16, 26, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  outline: none;
}

.outcome-action.is-active {
  border-color: rgba(107, 163, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(76, 141, 255, 0.14), rgba(255, 255, 255, 0.008)),
    rgba(11, 16, 26, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(107, 163, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.outcome-action.is-active strong {
  color: #dbe8ff;
}

.outcome-action-primary {
  border-color: rgba(76, 141, 255, 0.22);
}

.outcome-action-primary strong {
  color: #d8e6ff;
}

.outcome-preview {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(255, 255, 255, 0.008)),
    rgba(9, 14, 24, 0.96);
}

.outcome-preview .mini-label {
  margin-bottom: 8px;
}

.outcome-preview h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.18;
  color: var(--text);
}

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

.system-core-wrap {
  position: relative;
  z-index: 2;
  transform: none;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  width: min(100%, 220px);
}

.system-core {
  position: relative;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 52% 48%, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0) 58%);
  animation: corePulse 5.6s ease-in-out infinite;
}

.system-core-glow,
.system-core-ring,
.system-core-node {
  position: absolute;
  border-radius: 999px;
}

.system-core-glow {
  inset: -20px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle, rgba(76, 141, 255, 0.12), rgba(76, 141, 255, 0) 66%);
  filter: blur(10px);
}

.ring-one {
  inset: 0;
  border: 1px solid rgba(107, 163, 255, 0.28);
  box-shadow:
    inset 0 0 36px rgba(76, 141, 255, 0.08),
    inset 0 8px 18px rgba(255, 255, 255, 0.025),
    0 0 28px rgba(76, 141, 255, 0.06);
}

.ring-two {
  inset: 18px;
  border: 1px solid rgba(107, 163, 255, 0.14);
}

.ring-three {
  inset: 36px;
  border: 1px solid rgba(107, 163, 255, 0.1);
}

.system-core-node {
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, var(--accent-hover), var(--accent-deep));
  box-shadow: 0 0 30px rgba(76, 141, 255, 0.22);
}

[dir="rtl"] .outcome-action {
  text-align: right;
}

[dir="rtl"] .outcome-action strong {
  letter-spacing: 0.04em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.narrow {
  max-width: 720px;
}

.problem-grid,
.workflow-grid,
.feature-grid,
.audience-grid,
.objection-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.section-alt .section-shell,
.proof-shell,
.demo-shell,
.faq-shell,
.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 88% 12%, rgba(45, 63, 143, 0.12), rgba(45, 63, 143, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(7, 11, 20, 0.96);
  box-shadow: var(--shadow-deep);
}

.section-alt .section-shell::before,
.proof-shell::before,
.demo-shell::before,
.faq-shell::before,
.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 16%),
    radial-gradient(circle at 84% 0%, rgba(76, 141, 255, 0.06), rgba(76, 141, 255, 0) 18%),
    radial-gradient(circle at 18% 0%, rgba(45, 63, 143, 0.12), rgba(45, 63, 143, 0) 22%);
  pointer-events: none;
}

.card,
.workflow-step,
.feature-card,
.compare-card,
.audience-card,
.faq-list details,
.demo-stage-card,
.proof-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 100% 100%, rgba(45, 63, 143, 0.1), rgba(45, 63, 143, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(12, 18, 29, 0.94);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.card h3,
.feature-card h3,
.workflow-step h3,
.compare-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.24rem;
  line-height: 1.12;
}

.card:hover,
.workflow-step:hover,
.feature-card:hover,
.compare-card:hover,
.audience-card:hover,
.demo-stage-card:hover,
.proof-card:hover,
.faq-list details:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 163, 255, 0.22);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.38);
}

.pain-card {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(7, 11, 20, 0.98);
}

.pain-card:nth-child(odd) {
  transform: translateY(3px);
}

.icon-wrap {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  color: #98bcff;
  margin-bottom: 14px;
}

.proof-copy p {
  max-width: 620px;
}

.feature-shell {
  display: grid;
  gap: 24px;
}

.feature-rail,
.feature-stack {
  min-width: 0;
}

.feature-rail-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 100% 100%, rgba(45, 63, 143, 0.12), rgba(45, 63, 143, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006)),
    rgba(7, 11, 20, 0.96);
  box-shadow: var(--shadow-deep);
}

.feature-rail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 90% 12%, rgba(76, 141, 255, 0.06), rgba(76, 141, 255, 0) 20%),
    radial-gradient(circle at 92% 12%, rgba(45, 63, 143, 0.14), rgba(45, 63, 143, 0) 26%);
  pointer-events: none;
}

.feature-rail-card h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.feature-rail-card > p:last-of-type {
  max-width: 34ch;
  margin-top: 18px;
}

.feature-rail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-rail-list span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
  color: #dce7f8;
  font-size: 0.86rem;
}

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

.deliverable-list li {
  position: relative;
  padding-left: 22px;
  color: #dce7f8;
  font-size: 0.96rem;
  line-height: 1.55;
}

.deliverable-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(76, 141, 255, 0.1);
}

.feature-stack {
  position: relative;
  display: grid;
  gap: 16px;
}

.feature-lane {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 100% 100%, rgba(45, 63, 143, 0.1), rgba(45, 63, 143, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(10, 15, 25, 0.96);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-lane::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(76, 141, 255, 0.6) 36%, rgba(76, 141, 255, 0.04));
  opacity: 0.72;
}

.feature-lane:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 163, 255, 0.24);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.4);
}

.feature-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(107, 163, 255, 0.24);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.12), rgba(45, 63, 143, 0.08) 64%, rgba(255, 255, 255, 0.006)),
    rgba(8, 13, 24, 0.98);
  color: #dbe7ff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.feature-lane-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.feature-lane-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-lane-title .icon-wrap {
  flex-shrink: 0;
  margin-bottom: 0;
}

.feature-lane-title h3,
.feature-support-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.34rem;
  line-height: 1.08;
}

.feature-lane-main p,
.feature-lane-impact p,
.feature-support-headline p,
.feature-support-card p,
.feature-support-card strong {
  margin: 0;
}

.feature-lane-impact {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 26%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.08), rgba(45, 63, 143, 0.06) 60%, rgba(255, 255, 255, 0.008)),
    rgba(8, 12, 20, 0.94);
}

.feature-lane-impact .mini-label,
.feature-support-headline .mini-label {
  margin-bottom: 8px;
}

.feature-lane-impact p {
  color: #eef3fc;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.feature-support-block {
  margin-top: 4px;
  display: grid;
  gap: 14px;
}

.feature-support-headline p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.feature-support-row {
  display: grid;
  gap: 16px;
}

.feature-support-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.006)),
    rgba(10, 15, 25, 0.94);
  box-shadow: var(--shadow-card);
}

.feature-support-card p {
  margin-top: 14px;
}

.feature-support-card strong {
  display: block;
  margin-top: 18px;
  color: #eef3fc;
  font-size: 1rem;
  line-height: 1.45;
}

.feature-support-card-secondary {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.004)),
    rgba(8, 12, 20, 0.9);
}

.proof-notes {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.proof-notes p {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #d9e3f4;
  font-size: 0.95rem;
}

.proof-notes p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(76, 141, 255, 0.12);
}

[dir="rtl"] .proof-notes p {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .proof-notes p::before {
  left: auto;
  right: 0;
}

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

.proof-output {
  border-color: rgba(107, 163, 255, 0.18);
}

.proof-follow {
  border-color: rgba(76, 141, 255, 0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.09), rgba(45, 63, 143, 0.06) 60%, rgba(255, 255, 255, 0.008)),
    rgba(12, 18, 29, 0.96);
}

.proof-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8fb8ff;
  opacity: 0.84;
}

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

.feature-card strong {
  display: block;
  margin-top: 16px;
  color: #e7edf9;
  font-size: 0.95rem;
}

.feature-card-priority {
  border-color: var(--line-strong);
}

.feature-card-secondary {
  opacity: 0.92;
}

.workflow-step span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-hover);
  font-size: 1.7rem;
  font-weight: 700;
}

.demo-shell {
  gap: 24px;
}

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

.demo-list li {
  position: relative;
  padding-left: 18px;
  color: #d9e3f4;
  font-size: 0.94rem;
  line-height: 1.55;
}

.demo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(107, 163, 255, 0.26);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.16), rgba(45, 63, 143, 0.12) 64%, rgba(255, 255, 255, 0.02));
  color: #dfe9fb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.demo-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.stage-output {
  border-color: rgba(107, 163, 255, 0.22);
}

.stage-next {
  border-color: rgba(76, 141, 255, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.09), rgba(45, 63, 143, 0.06) 60%, rgba(255, 255, 255, 0.008)),
    rgba(12, 18, 29, 0.96);
}

.compare-card.before {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.004)),
    rgba(6, 10, 18, 0.99);
}

.compare-card.after {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    linear-gradient(160deg, rgba(76, 141, 255, 0.09), rgba(45, 63, 143, 0.06) 60%, rgba(255, 255, 255, 0.008)),
    rgba(12, 18, 29, 0.96);
}

.compare-card ul {
  margin: 0;
  padding-left: 18px;
}

[dir="rtl"] .compare-card ul {
  padding-left: 0;
  padding-right: 18px;
}

.audience-card {
  text-align: center;
  color: var(--text);
  font-size: 1rem;
}

.faq-list details {
  padding: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.006)),
    rgba(8, 12, 20, 0.98);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 48px 20px 22px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  transition: color 180ms ease;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #9bc2ff;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

[dir="rtl"] .faq-list summary {
  padding: 20px 22px 20px 48px;
}

[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 22px;
}

.faq-list details[open] summary {
  color: #eef3fc;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: #dbe7ff;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-cta {
  padding-bottom: 64px;
}

.final-cta-card {
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 50% 16%, rgba(76, 141, 255, 0.14), rgba(76, 141, 255, 0) 24%),
    radial-gradient(circle at 52% 0%, rgba(45, 63, 143, 0.18), rgba(45, 63, 143, 0) 34%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-0) 100%);
}

.final-cta-card p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.closing-proof-strip {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  text-align: left;
}

.closing-proof-item {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(9, 14, 24, 0.94);
}

.closing-proof-item p {
  margin: 0;
  max-width: none;
}

.site-footer {
  padding: 0 20px 40px;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .deliverable-list li {
  padding-left: 0;
  padding-right: 22px;
}

[dir="rtl"] .deliverable-list li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .demo-list li {
  padding-left: 0;
  padding-right: 18px;
}

[dir="rtl"] .demo-list li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .closing-proof-strip {
  text-align: right;
}

.section-shell,
.hero-copy,
.hero-visual {
  animation: revealUp 560ms ease both;
}

.feature-card,
.card,
.compare-card,
.workflow-step,
.proof-card,
.demo-stage-card {
  animation: revealUp 620ms ease both;
}

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.96;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes flowTravel {
  0% {
    left: 12%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    left: calc(50% - 36px);
    opacity: 0.92;
  }
  82% {
    opacity: 1;
  }
  100% {
    left: calc(88% - 74px);
    opacity: 0;
  }
}

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

@media (min-width: 640px) {
  .section {
    padding: 60px 24px;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .problem-grid,
  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .objection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }

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

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

@media (min-width: 960px) {
  .site-header {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .compare-grid,
  .demo-shell,
  .proof-shell {
    grid-template-columns: minmax(0, 0.78fr) minmax(660px, 1.22fr);
    align-items: center;
  }

  .feature-shell {
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .feature-rail-card {
    position: sticky;
    top: 92px;
  }

  .feature-stack {
    padding-left: 56px;
  }

  .feature-stack::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 186px;
    left: 20px;
    width: 1px;
    background: linear-gradient(180deg, rgba(107, 163, 255, 0.48), rgba(107, 163, 255, 0.06));
  }

  .feature-lane {
    grid-template-columns: 56px minmax(0, 1.1fr) minmax(220px, 0.82fr);
    align-items: start;
    padding: 20px 22px 20px 18px;
  }

  .feature-rank {
    justify-self: center;
  }

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

  .workflow-grid,
  .feature-grid,
  .audience-grid,
  .objection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid .feature-card:last-child,
  .audience-grid .audience-card:nth-child(5),
  .audience-grid .audience-card:nth-child(6) {
    grid-column: span 2;
  }

  .hero-copy h1 {
    max-width: 560px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 220px 172px 280px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    min-height: 500px;
    padding: 34px 22px;
  }

  .hero-route {
    display: block;
    inset: 50% 17% auto 17%;
  }

  .lead-message-card {
    width: 220px;
    max-width: none;
    justify-self: start;
  }

  .outcome-card {
    width: 280px;
    max-width: none;
    justify-self: end;
  }

  .system-core {
    width: 196px;
    height: 196px;
  }

  [dir="rtl"] .feature-rail {
    order: 2;
  }

  [dir="rtl"] .feature-stack {
    order: 1;
    padding-left: 0;
    padding-right: 56px;
  }

  [dir="rtl"] .feature-stack::before {
    left: auto;
    right: 20px;
  }

  [dir="rtl"] .feature-lane {
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.1fr) 56px;
    padding: 20px 18px 20px 22px;
  }

  [dir="rtl"] .feature-rank {
    order: 3;
  }

  [dir="rtl"] .feature-lane-main {
    order: 2;
  }

  [dir="rtl"] .feature-lane-impact {
    order: 1;
  }
}

/* Simplified premium layout */

.hero {
  padding-top: 72px;
}

.section {
  padding: 76px 20px;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.narrow {
  max-width: 680px;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.88;
}

.hero-subhead {
  max-width: 34ch;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.62;
}

.trust-line {
  max-width: 38ch;
  margin-top: 18px;
  color: rgba(232, 239, 249, 0.9);
  font-size: 0.92rem;
}

.hero-visual-minimal {
  display: block;
  grid-template-columns: none;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual-minimal::before,
.hero-visual-minimal::after {
  display: none;
}

.hero-scene {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
  width: min(100%, 620px);
  min-height: 380px;
  margin: 0 auto;
  padding: 24px 0;
}

.scene-flow {
  position: absolute;
  top: 70px;
  bottom: 70px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14) 24%, rgba(76, 141, 255, 0.48) 52%, rgba(255, 255, 255, 0.14) 78%, rgba(255, 255, 255, 0));
  opacity: 0.78;
}

.scene-bubble {
  position: relative;
  z-index: 1;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 100% 100%, rgba(45, 63, 143, 0.12), rgba(45, 63, 143, 0) 48%),
    rgba(9, 13, 21, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.scene-bubble p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  text-wrap: balance;
}

.scene-core-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.scene-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at center, rgba(76, 141, 255, 0.12), rgba(76, 141, 255, 0) 58%);
  animation: corePulse 5.6s ease-in-out infinite;
}

.scene-core-light,
.scene-core-ring,
.scene-core-dot {
  position: absolute;
  border-radius: 999px;
}

.scene-core-light {
  inset: -22px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle, rgba(76, 141, 255, 0.14), rgba(76, 141, 255, 0) 68%);
  filter: blur(12px);
}

.scene-core-ring {
  inset: 0;
  border: 1px solid rgba(107, 163, 255, 0.26);
  box-shadow:
    inset 0 0 36px rgba(76, 141, 255, 0.08),
    inset 0 8px 18px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(76, 141, 255, 0.06);
}

.scene-core-ring::before,
.scene-core-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  border: 1px solid rgba(107, 163, 255, 0.12);
}

.scene-core-ring::after {
  inset: 44px;
  border-color: rgba(107, 163, 255, 0.08);
}

.scene-core-dot {
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, var(--accent-hover), var(--accent-deep));
  box-shadow: 0 0 28px rgba(76, 141, 255, 0.2);
}

.scene-core-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ebfff;
}

.proof-minimal-shell,
.foundation-shell,
.demo-minimal-shell,
.faq-minimal-shell,
.closing-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 44px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 88% 12%, rgba(45, 63, 143, 0.12), rgba(45, 63, 143, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(7, 11, 18, 0.88);
  box-shadow: var(--shadow-deep);
}

.proof-minimal-shell,
.foundation-shell,
.pillars-shell,
.faq-minimal-shell,
.demo-minimal-shell,
.closing-shell {
  max-width: 980px;
  margin: 0 auto;
}

.proof-minimal-grid {
  display: grid;
  gap: 30px;
}

.example-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 22%),
    rgba(10, 14, 22, 0.82);
  box-shadow: var(--shadow-card);
}

.example-line + .example-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.example-line p,
.contrast-item p,
.pillar-item p,
.demo-minimal-shell > p:not(.eyebrow),
.closing-shell > p:not(.eyebrow):not(.closing-proof-line) {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.example-line .mini-label,
.contrast-item .mini-label {
  display: inline-block;
  margin-bottom: 10px;
}

.proof-contrast {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contrast-item {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contrast-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.pillars-shell {
  max-width: 900px;
}

.foundation-shell {
  max-width: 900px;
}

.foundation-shell h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.foundation-shell > p:not(.eyebrow) {
  max-width: 46ch;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.pillar-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-number {
  color: #9ebfff;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.pillar-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.38rem;
  line-height: 1.06;
}

.demo-minimal-shell,
.closing-shell {
  text-align: center;
}

.demo-minimal-shell h2,
.closing-shell h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.demo-minimal-shell > p:not(.eyebrow),
.closing-shell > p:not(.eyebrow):not(.closing-proof-line) {
  max-width: 34ch;
  margin: 18px auto 0;
}

.faq-minimal-shell .faq-list {
  display: grid;
  gap: 0;
}

.faq-minimal-shell .faq-list details {
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-minimal-shell .faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-minimal-shell .faq-list summary {
  padding: 22px 42px 22px 0;
  font-size: 1.05rem;
}

.faq-minimal-shell .faq-list p {
  padding: 0 0 22px;
}

[dir="rtl"] .faq-minimal-shell .faq-list summary {
  padding: 22px 0 22px 42px;
}

[dir="rtl"] .pillar-item {
  grid-template-columns: 1fr 64px;
}

[dir="rtl"] .pillar-number {
  order: 2;
  text-align: left;
}

[dir="rtl"] .hero-copy h1,
[dir="rtl"] .hero-subhead,
[dir="rtl"] .trust-line,
[dir="rtl"] .section-head.narrow {
  max-width: none;
}

.closing-proof-line {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.closing-support-line {
  margin: 10px 0 0;
  color: #d6e2f6;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
    align-items: center;
  }

  .hero-visual-minimal {
    min-height: 500px;
  }

  .hero-scene {
    min-height: 470px;
    padding: 0;
  }

  .scene-flow {
    top: 50%;
    bottom: auto;
    left: 16%;
    right: 16%;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14) 24%, rgba(76, 141, 255, 0.48) 52%, rgba(255, 255, 255, 0.14) 78%, rgba(255, 255, 255, 0));
  }

  .lead-bubble {
    position: absolute;
    top: 54px;
    left: 0;
  }

  .scene-core-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .result-bubble {
    position: absolute;
    right: 0;
    bottom: 68px;
  }

  .proof-minimal-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.72fr);
    gap: 36px;
    align-items: start;
  }
}

/* Observer rebuild */

.observer-header {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.88), rgba(5, 7, 13, 0.52) 70%, rgba(5, 7, 13, 0));
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.observer-brand {
  width: 64px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 54px;
}

.header-link {
  color: rgba(184, 194, 214, 0.78);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 180ms ease;
}

.header-link:hover {
  color: #8db4ff;
}

.nav-demo-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.showcase-hero {
  position: relative;
  padding: var(--space-section-hero-top) 20px var(--space-section-hero-bottom);
  overflow: hidden;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: min(1080px, 100vw);
  height: 760px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 38% 38%, rgba(76, 141, 255, 0.12), rgba(76, 141, 255, 0) 40%),
    radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 28%);
  opacity: 0.92;
  pointer-events: none;
}

.hero-showcase {
  position: relative;
}

.showcase-copy {
  max-width: 900px;
}

.showcase-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  max-width: 10ch;
  font-size: var(--title-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-accent-line {
  background: linear-gradient(135deg, #4a92ff 0%, #4f63ff 48%, #6f35ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-subhead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(184, 194, 214, 0.84);
  font-size: var(--text-lead);
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.showcase-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero-primary-btn {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  justify-content: center;
  width: fit-content;
}

.hero-secondary-btn {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  min-height: 86px;
  padding: 0 28px 0 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    rgba(30, 35, 48, 0.94);
  color: rgba(231, 231, 241, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-proof-chip span:last-child {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.chip-dots {
  display: flex;
  margin-right: 4px;
}

.chip-dots span {
  width: 44px;
  height: 44px;
  margin-left: -10px;
  border-radius: 16px;
  border: 2px solid rgba(30, 35, 48, 0.94);
  background: linear-gradient(180deg, rgba(102, 123, 159, 0.86), rgba(74, 93, 126, 0.92));
}

.chip-dots span:first-child {
  margin-left: 0;
}

.chip-dots span:nth-child(2) {
  background: linear-gradient(180deg, rgba(115, 134, 168, 0.88), rgba(88, 106, 138, 0.94));
}

.chip-dots span:nth-child(3) {
  background: linear-gradient(180deg, rgba(128, 147, 179, 0.92), rgba(105, 122, 152, 0.96));
}

.conversation-section {
  padding-top: var(--space-section);
}

.conversation-shell,
.pillar-showcase,
.faq-editorial {
  max-width: 1280px;
}

.conversation-shell {
  display: grid;
  gap: 42px;
}

.conversation-grid {
  display: grid;
  gap: 40px;
}

.section-glow-divider {
  position: relative;
  width: min(100%, 1120px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(76, 141, 255, 0) 0%,
    rgba(76, 141, 255, 0.45) 24%,
    rgba(102, 95, 255, 0.78) 50%,
    rgba(76, 141, 255, 0.45) 76%,
    rgba(76, 141, 255, 0) 100%
  );
}

.section-glow-divider::after {
  content: "";
  position: absolute;
  inset: -10px 12% auto;
  height: 18px;
  background: linear-gradient(
    90deg,
    rgba(76, 141, 255, 0) 0%,
    rgba(76, 141, 255, 0.12) 26%,
    rgba(108, 83, 255, 0.22) 50%,
    rgba(76, 141, 255, 0.12) 74%,
    rgba(76, 141, 255, 0) 100%
  );
  filter: blur(12px);
  pointer-events: none;
}

.conversation-proof-banner {
  width: min(100%, 940px);
  margin: 0 auto;
}

.conversation-proof-card {
  position: relative;
  padding: 20px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(23, 26, 33, 0.98), rgba(18, 21, 27, 0.98)) padding-box,
    linear-gradient(135deg, rgba(84, 143, 255, 0.72), rgba(108, 83, 255, 0.88)) border-box;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.conversation-proof-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% 62%;
  height: 120px;
  background: radial-gradient(circle, rgba(94, 104, 255, 0.14), rgba(94, 104, 255, 0) 68%);
  pointer-events: none;
}

.conversation-proof-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.conversation-proof-icon {
  flex-shrink: 0;
  font-size: 1.28rem;
  line-height: 1;
  color: #4294ff;
  font-variation-settings:
    "FILL" 0,
    "wght" 350,
    "GRAD" 0,
    "opsz" 24;
}

.conversation-proof-card .mini-label {
  margin: 0;
}

.conversation-proof-card p {
  position: relative;
  z-index: 1;
  max-width: 29ch;
  margin: 0;
  color: rgba(236, 239, 245, 0.9);
  font-family: var(--font-heading);
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.conversation-copy {
  max-width: 540px;
}

.conversation-copy h2,
.pillar-head h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--title-section);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.conversation-copy p,
.pillar-head p,
.foundation-editorial-copy > p,
.faq-editorial .faq-list p,
.cta-panel p {
  color: rgba(184, 194, 214, 0.84);
  font-size: var(--text-body);
  line-height: 1.66;
}

.conversation-copy > p:not(.eyebrow),
.pillar-head > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 16px 0 0;
}

.conversation-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.conversation-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1fe3ff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.conversation-icon {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  color: #1fe3ff;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}

.conversation-stack {
  display: grid;
  gap: 20px;
}

.conversation-card {
  padding: 24px 24px 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(28, 31, 40, 0.9);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.conversation-card-manual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(29, 31, 40, 0.88);
}

.conversation-card-ai {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(31, 35, 45, 0.92);
}

.conversation-card-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 20px;
  margin-bottom: 16px;
}

.conversation-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.conversation-tag-manual {
  color: rgba(222, 92, 96, 0.78);
}

.conversation-tag-ai {
  color: rgba(137, 177, 255, 0.82);
}

.chat-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.chat-row + .chat-row {
  margin-top: 20px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(169, 171, 180, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar-system {
  background: linear-gradient(135deg, #4a92ff 0%, #4f63ff 48%, #6f35ff 100%);
  color: #0a1e46;
}

.chat-thread {
  flex: 1;
  min-width: 0;
}

.chat-thread-response {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-bubble {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-bubble p {
  margin: 0;
  color: rgba(231, 231, 241, 0.92);
  font-size: 0.94rem;
  line-height: 1.52;
}

.chat-bubble-system {
  background: linear-gradient(135deg, #4b90ff 0%, #5a74ff 48%, #7958ff 100%);
}

.chat-bubble-system p {
  color: #072455;
  font-weight: 600;
}

.chat-time {
  display: inline-block;
  margin-top: 10px;
  color: rgba(169, 171, 180, 0.78);
  font-size: 0.72rem;
}

.chat-silence {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(215, 56, 59, 0.86);
  font-size: 0.8rem;
  font-style: italic;
}

.pillar-section {
  padding-top: var(--space-section);
}

.pillar-showcase {
  max-width: 1240px;
}

.pillar-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.pillar-head > p:not(.eyebrow) {
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.pillar-card-grid {
  display: grid;
  gap: 20px;
}

.pillar-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(28, 31, 40, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  background: rgba(34, 38, 47, 0.94);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.22);
}

.pillar-card-accent {
  box-shadow:
    inset 0 0 0 1px rgba(76, 141, 255, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.18);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.pillar-icon-blue {
  background: rgba(0, 111, 240, 0.14);
  color: #87adff;
}

.pillar-icon-cyan {
  background: rgba(0, 227, 253, 0.1);
  color: #00e3fd;
}

.pillar-icon-violetless {
  background: rgba(76, 141, 255, 0.14);
  color: #b4ccff;
}

.pillar-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.32rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.pillar-card p {
  margin: 0;
  color: rgba(169, 171, 180, 0.9);
  font-size: 0.98rem;
  line-height: 1.62;
}

.foundation-note-section {
  position: relative;
  padding-top: var(--space-section);
  overflow: hidden;
}

.foundation-note-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background:
    radial-gradient(circle at 24% 36%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 28% 62%, rgba(76, 141, 255, 0.05), rgba(76, 141, 255, 0) 46%);
  pointer-events: none;
}

.foundation-editorial {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  display: grid;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.foundation-editorial-visual {
  display: flex;
  justify-content: center;
}

.foundation-visual-card {
  position: relative;
  width: clamp(180px, 21vw, 280px);
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(17, 19, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.foundation-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.foundation-visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.8rem, 6vw, 5.6rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  font-variation-settings:
    "FILL" 0,
    "wght" 120,
    "GRAD" 0,
    "opsz" 48;
}

.foundation-corner {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.foundation-corner-h {
  width: 40px;
  height: 1px;
}

.foundation-corner-v {
  width: 1px;
  height: 40px;
}

.foundation-editorial-copy {
  max-width: 700px;
}

.foundation-overline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: rgba(184, 194, 214, 0.66);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.foundation-overline-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.foundation-editorial-copy h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--title-section);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.foundation-editorial-copy > p {
  max-width: 36ch;
  margin: 18px 0 0;
  color: rgba(184, 194, 214, 0.84);
  font-size: var(--text-body);
  line-height: 1.66;
  letter-spacing: -0.01em;
}

.foundation-tail-line {
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.1);
}

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

.faq-editorial {
  max-width: 920px;
}

.faq-head {
  margin-bottom: 28px;
}

.faq-list details {
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list details:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.faq-list summary {
  padding: 20px 42px 20px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: -0.015em;
}

.faq-list summary::after {
  right: 0;
}

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

.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 42px) clamp(22px, 4vw, 38px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 82% 18%, rgba(76, 141, 255, 0.14), rgba(76, 141, 255, 0) 30%),
    radial-gradient(circle at 16% 92%, rgba(45, 63, 143, 0.16), rgba(45, 63, 143, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(10, 14, 22, 0.92);
  color: var(--text);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 30px 70px rgba(0, 0, 0, 0.24);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -26% 54%;
  height: 180px;
  background: radial-gradient(circle, rgba(96, 112, 255, 0.18), rgba(96, 112, 255, 0) 66%);
  pointer-events: none;
}

.cta-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-panel-eyebrow {
  margin-bottom: 16px;
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  color: var(--text);
  font-size: var(--title-section);
  line-height: 1.04;
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 36ch;
  margin: 16px 0 0;
  color: rgba(184, 194, 214, 0.84);
  font-size: 1rem;
  line-height: 1.62;
}

.cta-panel-actions {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.cta-panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #4b91ff 0%, #5872ff 48%, #6f35ff 100%);
  color: #f5f8ff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    0 18px 38px rgba(8, 27, 62, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta-panel-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 46px rgba(8, 27, 62, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.cta-panel-support {
  max-width: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(184, 194, 214, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

[dir="rtl"] .conversation-points li {
  flex-direction: row;
}

[dir="rtl"] .foundation-overline {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .foundation-editorial-copy {
  text-align: right;
}

[dir="rtl"] .cta-panel-copy,
[dir="rtl"] .cta-panel-support {
  text-align: right;
}

[dir="rtl"] .conversation-proof-card {
  text-align: right;
}

[dir="rtl"] .conversation-proof-head {
  justify-content: flex-start;
}

[dir="rtl"] .conversation-tag {
  letter-spacing: 0.02em;
}

[dir="rtl"] .conversation-card-head {
  justify-content: flex-start;
}

[dir="rtl"] .faq-list summary {
  padding: 24px 0 24px 42px;
}

[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 0;
}

[dir="rtl"] .chat-thread-response {
  align-items: flex-start;
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }

  .showcase-actions {
    align-items: flex-start;
  }

  .hero-cta-row {
    flex-direction: row;
    align-items: center;
  }

  .conversation-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
    align-items: center;
  }

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

  .foundation-editorial {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  }

  .cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy actions"
      "support support";
    align-items: center;
    column-gap: 40px;
    row-gap: 0;
  }

  .cta-panel-copy {
    grid-area: copy;
  }

  .cta-panel-actions {
    grid-area: actions;
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }

  .cta-panel-support {
    grid-area: support;
  }
}

@media (max-width: 899px) {
  .observer-header {
    padding: 14px 16px;
  }

  .nav-demo-btn {
    display: none;
  }

  .brand-logo {
    width: 56px;
  }

  .brand-logo-footer {
    width: 48px;
  }

  .showcase-hero {
    padding-top: 110px;
    padding-bottom: 68px;
  }

  .foundation-note-section {
    padding-top: 66px;
  }

  .foundation-editorial {
    gap: 34px;
  }

  .foundation-editorial-copy h2 {
    max-width: none;
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .foundation-editorial-copy > p {
    max-width: none;
    font-size: 1rem;
  }

  .foundation-overline {
    margin-bottom: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .conversation-shell {
    gap: 36px;
  }

  .section-glow-divider {
    width: 100%;
  }

  .conversation-proof-card {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .conversation-proof-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-proof-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .chat-bubble {
    max-width: 100%;
  }

  .cta-panel {
    border-radius: 24px;
  }

  .cta-panel-button {
    width: 100%;
  }

  .cta-panel-copy,
  .cta-panel h2,
  .cta-panel p {
    max-width: none;
  }

  .cta-panel h2 {
    line-height: 1.06;
  }
}
