
  .icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
  }

  nav.svelte-ocbj1u {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
    background: rgba(6, 10, 20, 0.24);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    /* GPU acceleration */
    will-change: background, border-color;
    transform: translateZ(0);
  }

  [data-theme="light"] nav.svelte-ocbj1u {
    background: rgba(247, 248, 255, 0.7);
  }

  nav.scrolled.svelte-ocbj1u {
    background: rgba(6, 10, 20, 0.6);
    border-bottom-color: rgba(102, 126, 234, 0.18);
    box-shadow: 0 18px 36px rgba(10, 15, 30, 0.25);
  }

  [data-theme="light"] nav.scrolled.svelte-ocbj1u {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  }

  .nav-shell.svelte-ocbj1u {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
  }

  .brand.svelte-ocbj1u {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 18px;
    transition:
      background 0.3s ease,
      transform 0.3s ease;
    color: var(--text-primary);
  }

  .brand.svelte-ocbj1u:hover {
    background: rgba(102, 126, 234, 0.12);
    transform: translateY(-1px);
  }

  .logo-img.svelte-ocbj1u {
    height: 28px;
    width: auto;
  }

  .logo-text.svelte-ocbj1u {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .brand-pill.svelte-ocbj1u {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(118, 141, 255, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.32);
    border-radius: 999px;
    padding: 4px 10px;
  }

  [data-theme="light"] .brand-pill.svelte-ocbj1u {
    color: #4c5fe3;
  }

  .nav-center.svelte-ocbj1u {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-link.svelte-ocbj1u {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
  }

  .nav-link.svelte-ocbj1u:hover {
    color: var(--text-secondary);
  }

  .nav-link.svelte-ocbj1u .indicator:where(.svelte-ocbj1u) {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transform: scaleX(0.4);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-link.active.svelte-ocbj1u {
    color: var(--text-primary);
  }

  .nav-link.active.svelte-ocbj1u .indicator:where(.svelte-ocbj1u) {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-actions.svelte-ocbj1u {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  .theme-toggle.svelte-ocbj1u {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(102, 126, 234, 0.28);
    background: rgba(102, 126, 234, 0.12);
    color: #4c5fe3;
    cursor: pointer;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease;
  }

  .theme-toggle.svelte-ocbj1u:hover {
    transform: translateY(-1px);
    border-color: rgba(102, 126, 234, 0.45);
    background: rgba(102, 126, 234, 0.2);
  }

  [data-theme="dark"] .theme-toggle.svelte-ocbj1u {
    color: #e2e8f0;
    background: rgba(37, 47, 89, 0.4);
    border-color: rgba(102, 126, 234, 0.22);
  }

  .ghost.svelte-ocbj1u {
    padding: 10px 20px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    background: rgba(102, 126, 234, 0.1) !important;
    color: #dbe4ff !important;
  }

  [data-theme="light"] .ghost.svelte-ocbj1u {
    color: #4c5fe3 !important;
    background: rgba(102, 126, 234, 0.12) !important;
  }

  .ghost.svelte-ocbj1u:hover {
    border-color: rgba(102, 126, 234, 0.6) !important;
    background: rgba(102, 126, 234, 0.2) !important;
  }

  .nav-cta.svelte-ocbj1u {
    padding: 10px 22px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  @media (max-width: 960px) {
    .nav-center.svelte-ocbj1u {
      display: none;
    }
  }

  @media (max-width: 640px) {
    .nav-shell.svelte-ocbj1u {
      gap: 16px;
    }

    .brand.svelte-ocbj1u {
      padding: 6px 10px;
    }

    .brand-pill.svelte-ocbj1u {
      display: none;
    }

    .ghost.svelte-ocbj1u {
      display: none !important;
    }

    .nav-cta.svelte-ocbj1u {
      padding: 10px 18px !important;
    }
  }

    .btn.svelte-18sv61c {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.2s ease,
            color 0.2s ease;
        border: none;
        text-align: center;
        text-decoration: none;
        will-change: transform;
        transform: translateZ(0);
        line-height: 1.2;
    }

    .btn.svelte-18sv61c:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    .btn-primary.svelte-18sv61c {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .btn-primary.svelte-18sv61c:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

    .btn-secondary.svelte-18sv61c {
        background: transparent;
        color: #667eea;
        border: 2px solid #667eea;
    }

    .btn-secondary.svelte-18sv61c:hover:not(:disabled) {
        background: #667eea;
        color: white;
    }

    .badge.svelte-dtbgkf {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        width: fit-content;
        white-space: nowrap;
    }

    .badge-default.svelte-dtbgkf {
        background: rgba(102, 126, 234, 0.12);
        border: 1px solid rgba(102, 126, 234, 0.35);
        color: #4c5fe3;
        backdrop-filter: blur(16px);
    }

    [data-theme="light"] .badge-default.svelte-dtbgkf {
        background: rgba(102, 126, 234, 0.14);
        color: #303a9e;
    }

    .badge-outline.svelte-dtbgkf {
        background: transparent;
        border: 1px solid rgba(102, 126, 234, 0.32);
        color: #dbe3ff;
    }

    [data-theme="light"] .badge-outline.svelte-dtbgkf {
        color: #4c5fe3;
        border-color: rgba(102, 126, 234, 0.4);
    }

  .hero.svelte-1a1se6c {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
  }

  .hero-grid.svelte-1a1se6c {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-copy.svelte-1a1se6c {
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: svelte-1a1se6c-fadeInUp 0.8s ease-out;
  }

  .headline.svelte-1a1se6c {
    font-size: clamp(44px, 6vw, 64px);
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
  }

  .subheadline.svelte-1a1se6c {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
  }

  .hero-actions.svelte-1a1se6c {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-list.svelte-1a1se6c {
    display: grid;
    gap: 14px;
    margin-top: 8px;
  }

  .hero-list-item.svelte-1a1se6c {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-tertiary);
  }

  .list-icon.svelte-1a1se6c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.18);
    color: #5567e7;
  }

  .hero-metrics.svelte-1a1se6c {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(102, 126, 234, 0.16);
  }

  .metric.svelte-1a1se6c {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .metric-value.svelte-1a1se6c {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
  }

  .metric-label.svelte-1a1se6c {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
  }

  .hero-trust.svelte-1a1se6c {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
  }

  .trust-label.svelte-1a1se6c {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }

  .trust-logos.svelte-1a1se6c {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.9;
  }

  .trust-logos.svelte-1a1se6c span:where(.svelte-1a1se6c) {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    background: rgba(var(--bg-secondary-rgb), 0.12);
    backdrop-filter: blur(18px);
  }

  .hero-visual.svelte-1a1se6c {
    position: relative;
    animation: svelte-1a1se6c-fadeInRight 0.8s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  @keyframes svelte-1a1se6c-fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .visual-glow.svelte-1a1se6c {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: radial-gradient(
      circle at 42% 18%,
      rgba(118, 75, 162, 0.45),
      rgba(118, 75, 162, 0)
    );
    filter: blur(60px);
    opacity: 0.6;
  }

  .hero-waveform.svelte-1a1se6c {
    position: relative;
    min-height: 400px;
  }

  .waveform-placeholder.svelte-1a1se6c {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.05) 0%,
      rgba(118, 75, 162, 0.05) 100%
    );
    animation: svelte-1a1se6c-pulse 2s ease-in-out infinite;
  }

  @keyframes svelte-1a1se6c-pulse {
    0%,
    100% {
      opacity: 0.6;
    }
    50% {
      opacity: 0.8;
    }
  }

  .hero-panel.svelte-1a1se6c {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    background: rgba(14, 19, 34, 0.45);
    color: #f8fafc;
    box-shadow: 0 35px 80px rgba(14, 19, 34, 0.4);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  [data-theme="light"] .hero-panel.svelte-1a1se6c {
    background: rgba(248, 249, 255, 0.75);
    color: #0f172a;
  }

  .hero-panel.primary.svelte-1a1se6c {
    max-width: 380px;
    margin-left: auto;
    margin-right: 20px;
  }

  .hero-panel.secondary.svelte-1a1se6c {
    max-width: 320px;
    margin-left: 28px;
    font-size: 14px;
    gap: 14px;
  }

  .panel-header.svelte-1a1se6c {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .badge.svelte-1a1se6c {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.18);
    color: #e0e7ff;
  }

  [data-theme="light"] .badge.svelte-1a1se6c {
    color: #303a9e;
  }

  .timestamp.svelte-1a1se6c {
    font-size: 14px;
    opacity: 0.7;
  }

  .panel-transcript.svelte-1a1se6c {
    display: grid;
    gap: 12px;
  }

  .actor.svelte-1a1se6c {
    font-size: 14px;
    line-height: 1.6;
  }

  .actor.customer.svelte-1a1se6c {
    opacity: 0.65;
  }

  .panel-metrics.svelte-1a1se6c {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .panel-metrics.svelte-1a1se6c div:where(.svelte-1a1se6c) {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .metric-title.svelte-1a1se6c {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    opacity: 0.6;
  }

  .metric-score.svelte-1a1se6c {
    font-size: 18px;
    font-weight: 700;
  }

  .metric-score.positive.svelte-1a1se6c {
    color: #34d399;
  }

  .panel-row.svelte-1a1se6c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .panel-label.svelte-1a1se6c {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: inherit;
    opacity: 0.8;
  }

  .panel-value.svelte-1a1se6c {
    font-weight: 600;
    color: inherit;
    text-align: right;
  }

  @keyframes svelte-1a1se6c-fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 968px) {
    .hero.svelte-1a1se6c {
      padding-top: 40px;
    }

    .hero-grid.svelte-1a1se6c {
      grid-template-columns: 1fr;
    }

    .hero-visual.svelte-1a1se6c {
      margin-top: 24px;
    }

    .hero-panel.primary.svelte-1a1se6c,
    .hero-panel.secondary.svelte-1a1se6c {
      margin: 0;
      max-width: 100%;
    }

    .hero-metrics.svelte-1a1se6c {
      gap: 16px;
    }
  }

  @media (max-width: 540px) {
    .hero-actions.svelte-1a1se6c {
      width: 100%;
    }

    .hero-metrics.svelte-1a1se6c {
      flex-direction: column;
      align-items: flex-start;
    }
  }
