  :root {
    /* Brand accent — deep professional blue. Used sparingly. */
    --accent-300: #A78BFA;
    --accent-400: #7C3AED;
    --accent-500: #6D28D9;
    --accent-600: #5B21B6;
    --accent-700: #4C1D95;

    /* Functional colors */
    --green-400: #22c55e;
    --amber-400: #fbbf24;
    --cyan-400: #22d3ee;
    --rose-400: #fb7185;

    /* Dark theme — deep navy-ink with cool neutrals */
    --bg:           #06080d;
    --bg-elevated:  #0b0e15;
    --surface:      #0f131c;
    --surface-2:    #141823;
    --surface-3:    #1b202c;
    --border:       #1f2533;
    --border-strong:#2a3142;
    --text:         #f5f5f7;
    --text-2:       #c8c8d0;
    --text-3:       #8a8a92;
    --text-4:       #55555c;

    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.6);

    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --container: 1200px;
  }

  [data-theme="light"] {
    --bg:           #ffffff;
    --bg-elevated:  #fafafa;
    --surface:      #ffffff;
    --surface-2:    #f7f7f8;
    --surface-3:    #f0f0f2;
    --border:       #e8e8eb;
    --border-strong:#d4d4d8;
    --text:         #0a0a0f;
    --text-2:       #3a3a44;
    --text-3:       #6b6b74;
    --text-4:       #a0a0a8;
    --shadow-md: 0 8px 24px rgba(20, 20, 30, 0.06);
    --shadow-lg: 0 24px 60px -12px rgba(20, 20, 30, 0.10);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
    letter-spacing: -0.01em;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  img, svg { display: block; max-width: 100%; }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

  /* Subtle, monochrome ambient — no purple wash dominating the page */
  .ambient-bg {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
  }
  .ambient-bg::before {
    content: ''; position: absolute;
    top: -10%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse at center,
      rgba(124,58,237, 0.06) 0%,
      transparent 70%);
    filter: blur(40px);
  }
  [data-theme="light"] .ambient-bg::before {
    background: radial-gradient(ellipse at center,
      rgba(124,58,237, 0.04) 0%,
      transparent 70%);
  }
  .ambient-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at top, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 60%);
  }
  [data-theme="light"] .ambient-bg::after {
    background-image:
      linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: color-mix(in srgb, var(--bg) 70%, transparent);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
  }
  .brand {
    display: inline-flex; align-items: center; gap: 0;
    text-decoration: none;
    line-height: 1;
  }
  .brand-svg {
    height: 28px; width: auto; display: block;
    color: var(--text);
  }
  .footer-brand .brand-svg { height: 30px; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-link {
    font-size: 14px; color: var(--text-2);
    transition: color 0.15s;
  }
  .nav-link:hover { color: var(--text); }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .btn {
    font-size: 14px; font-weight: 500;
    padding: 9px 16px; border-radius: 10px;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
  }
  .btn-ghost {
    color: var(--text-2);
    border: 1px solid var(--border);
  }
  .btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-strong);
    background: var(--surface-2);
  }
  /* Primary button is now darker / inkier — purple is just a subtle border */
  .btn-primary {
    background: var(--text);
    color: var(--bg);
    box-shadow: var(--shadow-md);
  }
  [data-theme="dark"] .btn-primary { background: #f5f5f7; color: #0a0a0c; }
  [data-theme="light"] .btn-primary { background: #0a0a0f; color: #ffffff; }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  }
  .btn-lg { padding: 12px 22px; font-size: 15px; }
  .theme-toggle {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-2);
    transition: all 0.15s;
  }
  .theme-toggle:hover { border-color: var(--border-strong); color: var(--text); }
  .theme-toggle .sun { display: none; }
  [data-theme="light"] .theme-toggle .sun { display: block; }
  [data-theme="light"] .theme-toggle .moon { display: none; }

  /* ==========================================================
     HERO — minimal copy, live demo dominates
     ========================================================== */
  .hero {
    position: relative; z-index: 2;
    padding: 56px 0 60px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px; font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--green-400);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
    animation: live-pulse 2s infinite;
  }
  @keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 84px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
  }
  h1 em {
    font-style: italic;
    color: var(--accent-400);
  }
  .hero-sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.5;
    max-width: 440px;
    margin-bottom: 28px;
  }
  .hero-actions { display: flex; gap: 10px; margin-bottom: 22px; }
  .hero-demo-note {
    font-size: 13px;
    color: var(--text-3);
    margin-top: -12px;
    margin-bottom: 22px;
  }
  .hero-trust {
    display: flex; flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 12.5px; color: var(--text-3);
  }
  .hero-trust span { display: inline-flex; align-items: center; gap: 5px; }
  .hero-trust svg { width: 13px; height: 13px; }
  .hero-trust .check { color: var(--green-400); }

  /* ==========================================================
     LIVE DEMO PANEL — auto-playing chat → routing
     ========================================================== */
  .demo-shell {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .demo-window {
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-2);
  }
  .traffic-lights { display: flex; gap: 7px; }
  .traffic-lights span {
    width: 11px; height: 11px;
    border-radius: 50%;
  }
  .traffic-lights span:nth-child(1) { background: #ff5f57; }
  .traffic-lights span:nth-child(2) { background: #febc2e; }
  .traffic-lights span:nth-child(3) { background: #28c840; }
  .demo-url {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    background: var(--surface);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
  }
  .demo-status {
    font-size: 11px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .demo-status::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green-400);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
    animation: live-pulse 1.5s infinite;
  }

 .demo-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  height: 540px;
  min-height: 540px;
}

  /* Chat side */
  .chat-area {
    padding: 18px 20px 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    min-height: 0;
  }
  .chat-header {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
  }
  .chat-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-400), var(--accent-700));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
  }
  .chat-title { font-size: 13px; font-weight: 600; line-height: 1.2; }
  .chat-subtitle {
    font-size: 11px; color: var(--text-3);
    display: flex; align-items: center; gap: 5px;
    margin-top: 2px;
  }
  .chat-subtitle::before {
    content: ''; width: 5px; height: 5px;
    background: var(--green-400); border-radius: 50%;
  }

  .chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 16px;
    min-height: 0;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }
  .chat-messages::-webkit-scrollbar { display: none; }
  .chat-stream {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    justify-content: flex-end;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .chat-msg {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(8px);
    animation: msgIn 0.4s ease forwards;
  }
  @keyframes msgIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .chat-msg.user {
    align-self: flex-end;
    background: var(--surface-3);
    color: var(--text);
    border-bottom-right-radius: 4px;
  }
  .chat-msg.bot {
    align-self: flex-start;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.18);
    color: var(--text);
    border-bottom-left-radius: 4px;
  }
  [data-theme="light"] .chat-msg.bot {
    background: rgba(124,58,237,0.06);
    border-color: rgba(124,58,237,0.15);
  }
  /* Hero OTP verification bubble — bot-side, with security icon */
  .chat-msg.verify {
    align-self: flex-start;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 4px;
    max-width: 82%;
    padding: 12px 14px;
    font-size: 13px;
  }
  .chat-msg.verify .v-h {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 600;
    color: var(--accent-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .chat-msg.verify .v-h svg { width: 11px; height: 11px; }
  /* User-side phone or OTP entry — looks like a typed input */
  .chat-msg.entry {
    align-self: flex-end;
    background: var(--surface-3);
    color: var(--text);
    border-bottom-right-radius: 4px;
    font-family: var(--font-mono);
    font-size: 13.5px;
    letter-spacing: 0.05em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .chat-msg.entry::before {
    content: '';
    width: 5px; height: 14px;
    background: var(--accent-400);
    border-radius: 1px;
    animation: caret 1s steps(2) infinite;
  }
  @keyframes caret {
    50% { opacity: 0; }
  }
  .chat-msg.entry.done::before { display: none; }
  /* Verified bubble — small green confirmation */
  .chat-msg.verified {
    align-self: flex-start;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--green-400);
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 6px;
    max-width: fit-content;
  }
  .chat-msg.verified svg { width: 12px; height: 12px; }
  .chat-msg-meta {
    font-size: 10px;
    color: var(--text-3);
    margin-top: 2px;
    margin-bottom: -4px;
    padding: 0 4px;
  }
  .typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 14px;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
  }
  .typing-indicator span {
    width: 5px; height: 5px;
    background: var(--accent-400);
    border-radius: 50%;
    animation: typing 1.2s infinite;
  }
  .typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
  .typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes typing {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-2px); }
  }

  .chat-composer {
    flex-shrink: 0;
    padding: 12px 0 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
  }
  .chat-input {
    flex: 1;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 9px 12px;
    color: var(--text-3);
    font-size: 12.5px;
    font-family: inherit;
  }
  .chat-send-btn {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--accent-500);
    color: white;
    display: flex; align-items: center; justify-content: center;
  }
  .chat-send-btn svg { width: 14px; height: 14px; }

  /* Routing side */
  .routing-side {
    background: var(--surface-2);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
  }
  .routing-label {
    font-size: 10px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .routing-detected {
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    min-height: 18px;
    transition: opacity 0.3s;
  }
  .routing-detected .intent-tag {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .intent-tag.support { background: rgba(34,197,94,0.15); color: var(--green-400); }
  .intent-tag.sales   { background: rgba(124,58,237,0.15); color: var(--accent-400); }
  .intent-tag.employee{ background: rgba(251,191,36,0.15); color: var(--amber-400); }
  .intent-tag.live    { background: rgba(34,211,238,0.15); color: var(--cyan-400); }
  .intent-tag.classifying { background: var(--surface-3); color: var(--text-3); }

  .routing-divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0;
  }

  .routing-list {
    display: flex; flex-direction: column;
    gap: 8px;
  }
  .routing-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.45;
    position: relative;
  }
  .routing-item.active {
    opacity: 1;
    border-color: currentColor;
    background: var(--surface);
    transform: translateX(-1px);
    box-shadow: 0 0 0 1px currentColor, 0 4px 14px rgba(0,0,0,0.2);
  }
  .routing-item.active::after {
    content: '';
    position: absolute;
    right: 10px; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: live-pulse 1s infinite;
  }
  .routing-item-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  [data-theme="light"] .routing-item-icon {
    background: rgba(0,0,0,0.04);
  }
  .routing-item.active .routing-item-icon {
    background: color-mix(in srgb, currentColor 15%, transparent);
  }
  .routing-item-icon svg { width: 14px; height: 14px; color: currentColor; }
  .routing-item-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
  }
  .routing-item-sub {
    font-size: 10px;
    color: var(--text-3);
    margin-top: 2px;
  }

  .ri-1 { color: var(--green-400); }
  .ri-2 { color: var(--accent-400); }
  .ri-3 { color: var(--amber-400); }
  .ri-4 { color: var(--cyan-400); }

  /* Action card that appears when route fires */
  .action-card {
    margin-top: 14px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 11px;
    color: var(--text-2);
    line-height: 1.45;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, max-height 0.3s;
  }
  .action-card.visible {
    opacity: 1;
     margin-top: 14px;
	  max-height: 260px;

  }
  .action-card-h {
    font-size: 10px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .action-card .row {
    display: flex; justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px dashed var(--border);
  }
  .action-card .row:last-child { border-bottom: none; }
  .action-card .row b { color: var(--text); font-weight: 500; }

  /* ==========================================================
     LOGOS
     ========================================================== */
  .logos { position: relative; z-index: 2; padding: 56px 0 32px; text-align: center; }
  .logos-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--text-3);
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .logos-row {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 36px 56px;
    opacity: 0.65;
  }
  .logo-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-2);
    transition: opacity 0.2s;
  }
  .logo-item:hover { opacity: 1; }
  .logo-item svg { width: 22px; height: 22px; }

  /* ==========================================================
     SECTION HEADS
     ========================================================== */
  .section-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .section-eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--text-3);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.022em;
    margin-bottom: 16px;
  }
  h2 em { font-style: italic; color: var(--accent-400); }
  .section-sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.55;
  }

  /* ==========================================================
     MODES
     ========================================================== */
  .modes { position: relative; z-index: 2; padding: 80px 0 60px; }
  .mode {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
  }
  .mode:last-child { margin-bottom: 0; }
  .mode.reverse { grid-template-columns: 1.1fr 1fr; }
  .mode.reverse .mode-copy { order: 2; }
  .mode-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .mode-tag-num {
    width: 22px; height: 22px;
    border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .mode-1 .mode-tag-num { background: rgba(34,197,94,0.15); color: var(--green-400); }
  .mode-2 .mode-tag-num { background: rgba(124,58,237,0.15); color: var(--accent-400); }
  .mode-3 .mode-tag-num { background: rgba(251,191,36,0.15); color: var(--amber-400); }
  .mode-4 .mode-tag-num { background: rgba(34,211,238,0.15); color: var(--cyan-400); }
  .mode-1 .mode-tag-text { color: var(--green-400); }
  .mode-2 .mode-tag-text { color: var(--accent-400); }
  .mode-3 .mode-tag-text { color: var(--amber-400); }
  .mode-4 .mode-tag-text { color: var(--cyan-400); }
  .mode h3 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .mode h3 em { font-style: italic; color: var(--accent-400); }
  .mode-desc {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 480px;
  }
  .mode-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .mode-point {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px;
    color: var(--text-2);
  }
  .mode-point .dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
  }
  [data-theme="light"] .mode-point .dot { background: rgba(0,0,0,0.04); }
  .mode-point .dot svg { width: 10px; height: 10px; }
  .mode-1 .mode-point .dot { background: rgba(34,197,94,0.15); color: var(--green-400); }
  .mode-2 .mode-point .dot { background: rgba(124,58,237,0.15); color: var(--accent-400); }
  .mode-3 .mode-point .dot { background: rgba(251,191,36,0.15); color: var(--amber-400); }
  .mode-4 .mode-point .dot { background: rgba(34,211,238,0.15); color: var(--cyan-400); }

  /* MODE VISUALS */
  .visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .visual-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    background: var(--surface-2);
  }
  .visual-title {
    font-size: 13px; font-weight: 600;
  }
  .dots { display: flex; gap: 6px; }
  .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
  .visual-body { padding: 22px; }

  /* Ticket list */
  .ticket-list { display: flex; flex-direction: column; gap: 8px; }
  .ticket {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.15s;
  }
  .ticket:hover { border-color: var(--border-strong); }
  .t-status {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .t-status.resolved { background: var(--green-400); box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
  .t-status.open { background: var(--amber-400); box-shadow: 0 0 0 3px rgba(251,191,36,0.15); }
  .t-status.ai { background: var(--accent-400); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
  .t-info { min-width: 0; }
  .t-title { font-size: 13px; font-weight: 500; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .t-meta { font-size: 11px; color: var(--text-3); }
  .t-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .t-badge.ai { background: rgba(124,58,237,0.15); color: var(--accent-400); }
  .t-badge.sla { background: rgba(34,197,94,0.15); color: var(--green-400); }
  .t-badge.warn { background: rgba(251,191,36,0.15); color: var(--amber-400); }
  .ticket-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    margin-top: 18px;
  }
  .tstat-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
  .tstat-val { font-family: var(--font-display); font-size: 22px; line-height: 1; }
  .tstat-val.up { color: var(--green-400); }

  /* Lead card */
  .lead-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
  }
  .lead-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px dashed var(--border);
  }
  .lead-row:last-child { border-bottom: none; }
  .lead-label { color: var(--text-3); }
  .lead-val { color: var(--text); font-weight: 500; }
  .score-ring {
    display: flex; align-items: center; gap: 16px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02));
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 14px;
  }
  .ring-svg { width: 64px; height: 64px; flex-shrink: 0; }
  .score-info { flex: 1; }
  .score-info-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
  .score-info-val { font-family: var(--font-display); font-size: 28px; line-height: 1; color: var(--green-400); margin: 4px 0; }
  .score-info-action { font-size: 12px; color: var(--text-2); }

  /* Employee chat */
  .emp-chat {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
  }
  .emp-auth {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 12px;
  }
  .emp-auth svg { width: 14px; height: 14px; color: var(--green-400); flex-shrink: 0; }
  .emp-auth b { color: var(--text); font-weight: 600; }
  .emp-q { font-size: 13px; color: var(--text-2); margin-bottom: 10px; padding: 10px 14px; background: var(--surface-3); border-radius: 12px; border-bottom-left-radius: 4px; max-width: 85%; }
  .emp-a {
    font-size: 13px; line-height: 1.55;
    color: var(--text);
    padding: 12px 14px;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 12px;
    border-bottom-right-radius: 4px;
    margin-left: auto;
    max-width: 92%;
  }
  .emp-a b { color: var(--accent-400); font-weight: 600; }
  .emp-a-source {
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-3);
    display: flex; align-items: center; gap: 6px;
  }
  .emp-a-source svg { width: 11px; height: 11px; }

  /* OTP verification gate */
  .otp-prompt {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.5;
    padding: 12px 14px;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    max-width: 85%;
    margin-bottom: 10px;
  }
  .otp-prompt .otp-h {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 600;
    color: var(--accent-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .otp-prompt .otp-h svg { width: 11px; height: 11px; }
  .otp-prompt .otp-meta {
    font-size: 11px; color: var(--text-3);
    margin-top: 6px;
  }
  .otp-entry {
    margin-left: auto;
    max-width: 85%;
    margin-bottom: 10px;
    display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  }
  .otp-digits {
    display: flex; gap: 6px;
    padding: 8px 12px;
    background: var(--surface-3);
    border-radius: 12px;
    border-bottom-right-radius: 4px;
  }
  .otp-digits span {
    width: 26px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }
  .otp-verified {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px;
    color: var(--green-400);
  }
  .otp-verified svg { width: 11px; height: 11px; }

  /* Live chat split */
  .chat-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface-2);
  }
  .chat-side { padding: 14px; min-height: 240px; display: flex; flex-direction: column; }
  .chat-side + .chat-side { border-left: 1px solid var(--border); }
  .chat-side-h {
    font-size: 11px; font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
  }
  .chat-side-h::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%;
  }
  .customer-side .chat-side-h::before { background: var(--text-3); }
  .agent-side .chat-side-h::before { background: var(--cyan-400); box-shadow: 0 0 0 2px rgba(34,211,238,0.2); }
  .mini-bubble {
    font-size: 12px; line-height: 1.45;
    padding: 8px 11px;
    border-radius: 10px;
    margin-bottom: 6px;
    max-width: 95%;
  }
  .mini-bubble.cust { background: var(--surface-3); border-bottom-left-radius: 3px; }
  .mini-bubble.agent { background: rgba(34,211,238,0.1); color: var(--text); border: 1px solid rgba(34,211,238,0.2); border-bottom-right-radius: 3px; align-self: flex-end; margin-left: auto; }
  .ai-suggest {
    margin-top: auto;
    padding: 10px 12px;
    background: rgba(124,58,237,0.06);
    border: 1px dashed rgba(124,58,237,0.3);
    border-radius: 10px;
    font-size: 11px;
    color: var(--text-2);
  }
  .ai-suggest-h {
    font-size: 10px; font-weight: 600;
    color: var(--accent-400);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 4px;
    display: flex; align-items: center; gap: 5px;
  }
  .ai-suggest-h svg { width: 11px; height: 11px; }

  /* BEFORE / AFTER */
  .compare { position: relative; z-index: 2; padding: 80px 0; }
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
  }
  .compare-col {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
  }
  .compare-col.before {
    background: var(--surface);
  }
  .compare-col.before::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(135deg,
        transparent 0px, transparent 14px,
        rgba(251, 113, 133, 0.025) 14px, rgba(251, 113, 133, 0.025) 15px);
    pointer-events: none;
  }
  .compare-col.after {
    background: var(--surface);
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12), 0 24px 60px -12px rgba(34, 197, 94, 0.08);
  }
  .compare-col.after::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 70%);
    pointer-events: none;
  }
  .compare-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 5px 10px 5px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
  }
  .compare-col.before .compare-label {
    color: var(--rose-400);
    background: rgba(251, 113, 133, 0.06);
    border-color: rgba(251, 113, 133, 0.2);
  }
  .compare-col.after .compare-label {
    color: var(--green-400);
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
  }
  .compare-label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
  }
  .compare-h {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
  }
  .compare-h em { font-style: italic; }
  .compare-col.before .compare-h em { color: var(--rose-400); }
  .compare-col.after .compare-h em { color: var(--green-400); }

  .compare-list {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .compare-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .compare-item .ci-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .compare-col.before .ci-icon {
    background: rgba(251, 113, 133, 0.12);
    color: var(--rose-400);
  }
  .compare-col.after .ci-icon {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green-400);
  }
  .compare-item .ci-icon svg { width: 11px; height: 11px; }
  .compare-item-text {
    color: var(--text);
  }
  .compare-col.before .compare-item-text {
    color: var(--text-3);
    text-decoration: line-through;
    text-decoration-color: rgba(251, 113, 133, 0.4);
    text-decoration-thickness: 1px;
  }
  .compare-item-sub {
    display: block;
    font-size: 13px;
    color: var(--text-3);
    margin-top: 2px;
    text-decoration: none !important;
  }

  /* The arrow between columns */
  .compare-arrow {
    align-self: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-md);
    position: relative;
  }
  .compare-arrow::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--border);
    opacity: 0.5;
  }
  .compare-arrow svg { width: 24px; height: 24px; }

  /* WHY */
  .why { position: relative; z-index: 2; padding: 80px 0; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all 0.2s;
  }
  .why-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }
  .why-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 24px;
    font-style: italic;
    display: block;
  }
  .why-card h4 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
  }
  .why-card h4 em { font-style: italic; color: var(--accent-400); }
  .why-card p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.6;
  }

  /* PRICING */
  .pricing { position: relative; z-index: 2; padding: 80px 0; }
  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative;
    transition: all 0.2s;
  }
  .price-card.featured {
    border-color: var(--border-strong);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
  }
  .price-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: var(--bg);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
  }
  .price-name {
    font-size: 13px; font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .price-amount {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 6px;
  }
  .price-amount .num {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .price-amount .unit {
    font-size: 14px;
    color: var(--text-3);
  }
  .price-tagline {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .price-features {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
  }
  .price-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.45;
  }
  .price-features svg {
    width: 14px; height: 14px;
    color: var(--text-3);
    flex-shrink: 0; margin-top: 3px;
  }
  .price-features li b { color: var(--text); font-weight: 600; }
  .price-cta { width: 100%; justify-content: center; }
  .price-fineprint {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-3);
  }

  /* Backed by — parent company credibility section */
  .backed { position: relative; z-index: 2; padding: 80px 0; }
  .backed-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .backed-card::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .backed-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 500; color: var(--accent-400);
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 14px;
  }
  .backed h3 {
    font-size: 28px; font-weight: 700; line-height: 1.2;
    letter-spacing: -0.02em; margin-bottom: 16px;
    color: var(--text);
  }
  .backed h3 em { font-style: italic; color: var(--accent-400); }
  .backed-lede {
    color: var(--text-2); font-size: 15px; line-height: 1.6;
    margin-bottom: 24px;
  }
  .backed-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding-top: 20px; border-top: 1px solid var(--border);
  }
  .backed-stat .num {
    font-family: 'Instrument Serif', serif;
    font-size: 36px; line-height: 1; color: var(--text);
    font-style: italic; letter-spacing: -0.02em;
  }
  .backed-stat .lbl {
    font-size: 12px; color: var(--text-2);
    margin-top: 6px; line-height: 1.4;
  }
  .backed-right { display: flex; flex-direction: column; gap: 18px; }
  .backed-points { display: flex; flex-direction: column; gap: 16px; }
  .backed-point { display: flex; gap: 14px; align-items: flex-start; }
  .backed-point-num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(124,58,237,0.12);
    color: var(--accent-400);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600;
  }
  .backed-point-body { flex: 1; min-width: 0; }
  .backed-point-body strong {
    display: block; font-weight: 600; color: var(--text);
    font-size: 14px; margin-bottom: 3px;
  }
  .backed-point-body span {
    color: var(--text-2); font-size: 13px; line-height: 1.5;
  }
  .backed-cta {
    margin-top: 8px;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent-400); font-size: 13px; font-weight: 500;
    text-decoration: none;
  }
  .backed-cta:hover { color: var(--accent-300); }
  .backed-cta svg { width: 12px; height: 12px; }

  @media (max-width: 860px) {
    .backed-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
    .backed h3 { font-size: 22px; }
    .backed-stats { grid-template-columns: 1fr 1fr; }
  }

  /* CTA */
  .cta { position: relative; z-index: 2; padding: 80px 0 100px; }
  .cta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 56px 64px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
    position: relative; overflow: hidden;
  }
  .cta-card::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
  }
  [data-theme="light"] .cta-card::after {
    background-image:
      linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  }
  .cta-content { position: relative; z-index: 1; max-width: 540px; }
  .cta-content h2 { font-size: clamp(32px, 3.5vw, 44px); margin-bottom: 12px; }
  .cta-content p { color: var(--text-2); font-size: 15px; line-height: 1.55; }
  .cta-actions {
    position: relative; z-index: 1;
    display: flex; gap: 12px; flex-shrink: 0;
  }

  /* FOOTER */
  footer {
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
    padding: 56px 0 36px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand p {
    margin-top: 16px;
    font-size: 13px; color: var(--text-3);
    line-height: 1.55; max-width: 280px;
  }
  .footer-col h4 {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 13.5px; color: var(--text-2);
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-3);
  }

  /* RESPONSIVE */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .demo-body { grid-template-columns: 1fr; height: auto; min-height: auto; }
    .chat-messages { height: 340px; flex: 0 0 340px; }
    .routing-side { border-top: 1px solid var(--border); }
    .chat-area { border-right: none; }
    .mode { grid-template-columns: 1fr; gap: 36px; margin-bottom: 72px; }
    .mode.reverse { grid-template-columns: 1fr; }
    .mode.reverse .mode-copy { order: 0; }
    .why-grid { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; gap: 16px; }
    .compare-arrow { transform: rotate(90deg); margin: 4px auto; }
    .price-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .cta-card { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .chat-frame { grid-template-columns: 1fr; }
    .chat-side + .chat-side { border-left: none; border-top: 1px solid var(--border); }
  }


/* ==========================================================
   COMPANY MOMENTS — real-world context without turning into stock-photo SaaS
   Replace image URLs with your own product/lifestyle images later.
   ========================================================== */
.life-layer {
  position: relative;
  z-index: 2;
  padding: 84px 0 70px;
}
.life-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.life-copy h2 {
  max-width: 560px;
}
.life-copy .section-sub {
  max-width: 560px;
  text-align: left;
}
.life-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  max-width: 560px;
}
.life-point {
  display: grid;
  grid-template-columns: 34px 92px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
}
.life-point span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.14);
  color: var(--accent-300);
  font-family: var(--font-mono);
  font-size: 10px;
}
.life-point b {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.35;
}
.life-point em {
  font-style: normal;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}
.life-board {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 20% 15%, rgba(124,58,237,0.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(34,211,238,0.10), transparent 30%),
    var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 18px;
}
.life-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  pointer-events: none;
}
.life-photo {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.38);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.life-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 35%),
    linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.08) 55%);
  z-index: 1;
}
.life-photo-founder {
  left: 18px;
  top: 18px;
  width: 56%;
  height: 290px;
  background-image:
    linear-gradient(135deg, rgba(124,58,237,0.35), rgba(6,8,13,0.18)),
    url('images/velzora-operator.jpg');
}
.life-photo-sales {
  right: 18px;
  top: 82px;
  width: 43%;
  height: 220px;
  background-image:
    linear-gradient(135deg, rgba(34,197,94,0.22), rgba(6,8,13,0.18)),
    url('images/velzora-sales.jpg');
}
.life-photo-employee {
  left: 58px;
  bottom: 24px;
  width: 45%;
  height: 185px;
  background-image:
    linear-gradient(135deg, rgba(251,191,36,0.20), rgba(6,8,13,0.16)),
    url('images/velzora-employee.jpg');
}
.life-photo-label,
.life-photo-title {
  position: relative;
  z-index: 2;
  margin-left: 16px;
  margin-right: 16px;
}
.life-photo-label {
  margin-top: 16px;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.life-photo-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 700;
}
.life-command-card {
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 270px;
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-2) 84%, transparent);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}
.life-command-h {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin-bottom: 10px;
}
.life-command-row {
  display: grid;
  grid-template-columns: 10px 70px 1fr;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}
.life-command-row b {
  font-size: 12px;
  color: var(--text);
}
.life-command-row em {
  font-style: normal;
  font-size: 11px;
  color: var(--text-3);
  text-align: right;
}
.life-command-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px currentColor;
  opacity: 0.85;
}
.life-command-row .support { color: rgba(34,197,94,0.18); background: var(--green-400); }
.life-command-row .sales { color: rgba(124,58,237,0.18); background: var(--accent-400); }
.life-command-row .employee { color: rgba(251,191,36,0.18); background: var(--amber-400); }
.life-command-row .ops { color: rgba(34,211,238,0.18); background: var(--cyan-400); }

[data-theme="light"] .life-board::before {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.035) 1px, transparent 1px);
}
[data-theme="light"] .life-command-card {
  background: rgba(255,255,255,0.78);
}

@media (max-width: 980px) {
  .life-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .life-copy .section-sub {
    max-width: 720px;
  }
  .life-board {
    min-height: 520px;
  }
}
@media (max-width: 640px) {
  .life-layer {
    padding: 58px 0 42px;
  }
  .life-point {
    grid-template-columns: 30px 1fr;
  }
  .life-point em {
    grid-column: 2;
  }
  .life-board {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 14px;
  }
  .life-photo,
  .life-command-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }
  .life-photo {
    height: 190px;
  }
  .life-command-card {
    width: 100%;
  }
}


/* SEO CONTENT — readable, premium, and not visually heavy */
.seo-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 38%, transparent), transparent);
}
.seo-wrap { max-width: 980px; }
.seo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.seo-content p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.seo-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.seo-grid h3 {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.seo-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}
.seo-grid li {
  position: relative;
  padding-left: 18px;
}
.seo-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-400);
}
@media (max-width: 760px) {
  .seo-grid { grid-template-columns: 1fr; }
}
