
    
      :root {
        --primary: #2563eb;
        --primary-dark: #1d4ed8;
        --primary-soft: #dbeafe;
        --accent: #10b981;
        --text: #0f172a;
        --muted: #64748b;
        --border: #e2e8f0;
        --bg: #f8fafc;
        --card: #ffffff;
        --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
        --radius: 22px;
        --max-width: 1220px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family:
          "Inter",
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        color: var(--text);
        background: linear-gradient(
          180deg,
          #eef4ff 0%,
          #f8fafc 240px,
          #ffffff 100%
        );
        line-height: 1.6;
      }

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

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

      .topbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(37, 99, 235, 0.94);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
      }

      .nav {
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-weight: 800;
        letter-spacing: 0.02em;
      }

      .brand-logo {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.18));
        flex: 0 0 auto;
      }

      .nav-links,
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }

      .nav-actions .solid,
      .nav-actions .outline {
        transition:
          transform 0.18s ease,
          background 0.18s ease,
          border-color 0.18s ease;
      }

      .nav-actions .solid:hover,
      .nav-actions .outline:hover {
        transform: translateY(-1px);
      }

      .nav-links a,
      .nav-actions a {
        padding: 10px 14px;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.95);
        font-size: 14px;
        font-weight: 600;
      }

      .nav-links a:hover {
        background: rgba(255, 255, 255, 0.12);
      }

      .nav-actions .outline {
        border: 1px solid rgba(255, 255, 255, 0.22);
      }

      .nav-actions .solid {
        background: white;
        color: var(--primary-dark);
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
      }

      section {
        padding: 68px 0;
      }

      .hero {
        padding-top: 60px;
        padding-bottom: 30px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 38px;
        align-items: center;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-dark);
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 22px;
      }

      h1 {
        margin: 0 0 18px;
        font-size: clamp(2.7rem, 6vw, 4.8rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
        max-width: 760px;
      }

      .hero p {
        margin: 0 0 22px;
        max-width: 700px;
        font-size: 1.14rem;
        color: var(--muted);
      }

      .hero-strong {
        font-size: 1.05rem;
        color: #334155;
        font-weight: 600;
        margin-bottom: 28px;
      }

      .actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 24px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        padding: 0 24px;
        border-radius: 14px;
        font-weight: 800;
        font-size: 1rem;
        transition:
          transform 0.18s ease,
          box-shadow 0.18s ease,
          background 0.18s ease;
      }

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

      .btn-primary {
        background: var(--primary);
        color: white;
        box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
      }

      .btn-primary:hover {
        background: var(--primary-dark);
      }

      .btn-secondary {
        background: white;
        color: var(--text);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .micro-note {
        font-size: 0.95rem;
        color: var(--muted);
      }

      .dashboard-card {
        background: white;
        border: 1px solid rgba(37, 99, 235, 0.16);
        border-radius: 26px;
        box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14);
        overflow: hidden;
      }

      .dashboard-top {
        padding: 18px 20px;
        background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        font-weight: 700;
      }

      .dashboard-brand {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.2));
      }

      .dots {
        display: flex;
        gap: 6px;
      }

      .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.8);
      }

      .dashboard-body {
        padding: 24px;
        display: grid;
        gap: 18px;
      }

      .stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }

      .stat {
        background: #f8fafc;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 16px;
      }

      .stat-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--muted);
        margin-bottom: 8px;
      }

      .stat-value {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: -0.03em;
      }

      .workflow-card {
        background: #f8fafc;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px;
      }

      .workflow-card h3 {
        margin: 0 0 12px;
        font-size: 1rem;
      }

      .workflow-list {
        display: grid;
        gap: 10px;
      }

      .workflow-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 12px 14px;
        font-size: 0.95rem;
      }

      .pill {
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 700;
      }

      .pill.todo {
        background: #e0f2fe;
        color: #0369a1;
      }
      .pill.progress {
        background: #ede9fe;
        color: #6d28d9;
      }
      .pill.done {
        background: #dcfce7;
        color: #15803d;
      }

      .section-heading {
        max-width: 840px;
        margin: 0 auto 26px;
        text-align: center;
      }

      .section-heading h2 {
        margin: 0 0 12px;
        font-size: clamp(2rem, 4vw, 3.1rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
      }

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

      .problem-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin-top: 32px;
      }

      .problem-card,
      .feature-card,
      .use-card,
      .pricing-card,
      .faq-item {
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 24px;
        box-shadow: var(--shadow);
      }

      .problem-card h3,
      .feature-card h3,
      .use-card h3,
      .pricing-card h3,
      .faq-item h3 {
        margin: 0 0 10px;
        font-size: 1.18rem;
        letter-spacing: -0.02em;
      }

      .problem-card p,
      .feature-card p,
      .use-card p,
      .pricing-card p,
      .faq-item p {
        margin: 0;
        color: var(--muted);
      }

      .closing-line {
        margin-top: 26px;
        text-align: center;
        font-size: 1.08rem;
        font-weight: 700;
        color: #1e293b;
      }

      .feature-grid,
      .use-grid,
      .pricing-grid,
      .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
      }

      .feature-card ul,
      .use-card ul,
      .pricing-card ul {
        margin: 14px 0 0;
        padding-left: 18px;
        color: #334155;
      }

      .philosophy {
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      }

      .philosophy-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .philosophy-table th,
      .philosophy-table td {
        padding: 20px 22px;
        border-bottom: 1px solid var(--border);
        text-align: left;
        font-size: 1rem;
      }

      .philosophy-table th {
        background: #eff6ff;
        color: #1e3a8a;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .philosophy-table tr:last-child td {
        border-bottom: none;
      }

      .emphasis {
        font-weight: 800;
        color: var(--primary-dark);
      }

      .proof-box {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        background: white;
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 34px 28px;
      }

      .proof-box p {
        margin: 0;
        font-size: 1.08rem;
        color: #334155;
      }

      .lead-capture {
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      }

      .lead-capture-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: stretch;
      }

      .lead-copy,
      .lead-form-card {
        background: white;
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 30px;
      }

      .lead-copy h3,
      .lead-form-card h3 {
        margin: 0 0 12px;
        font-size: 1.4rem;
        letter-spacing: -0.02em;
      }

      .lead-copy p,
      .lead-form-card p {
        margin: 0 0 16px;
        color: var(--muted);
      }

      .lead-copy ul {
        margin: 0;
        padding-left: 18px;
        color: #334155;
      }

      .lead-form {
        display: grid;
        gap: 14px;
      }

      .lead-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      .lead-form label {
        display: grid;
        gap: 7px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #334155;
      }

      .lead-form input,
      .lead-form textarea,
      .lead-form select {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 12px 14px;
        font: inherit;
        color: var(--text);
        background: #fff;
      }

      .lead-form textarea {
        min-height: 128px;
        resize: vertical;
      }

      .lead-disclaimer {
        font-size: 0.9rem;
        color: var(--muted);
        margin-top: 4px;
      }

      .cta-band {
        padding-top: 34px;
      }

      .cta-panel {
        background: linear-gradient(
          135deg,
          #1d4ed8 0%,
          #2563eb 65%,
          #3b82f6 100%
        );
        color: white;
        border-radius: 30px;
        box-shadow: 0 24px 60px rgba(37, 99, 235, 0.26);
        padding: 44px 34px;
        text-align: center;
      }

      .cta-panel h2 {
        margin: 0 0 12px;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
      }

      .cta-panel p {
        margin: 0 auto 24px;
        max-width: 760px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
      }

      .cta-panel .actions {
        justify-content: center;
        margin-bottom: 0;
      }

      .btn-light {
        background: white;
        color: var(--primary-dark);
      }

      .btn-outline-light {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.32);
      }

      footer {
        padding: 34px 0 48px;
        color: #64748b;
        font-size: 0.95rem;
        border-top: 1px solid var(--border);
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      }

      .footer-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        letter-spacing: 0.02em;
        color: #0f172a;
        margin-bottom: 10px;
      }

      .footer-copy {
        margin: 0;
        max-width: 520px;
        color: #64748b;
      }

      .footer-links {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        font-weight: 600;
      }

      .footer-links a:hover {
        color: #0f172a;
      }

      .footer-bottom {
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid var(--border);
        text-align: center;
      }

      @media (max-width: 1080px) {
        .hero-grid,
        .problem-strip,
        .feature-grid,
        .use-grid,
        .pricing-grid,
        .faq-grid,
        .lead-capture-grid {
          grid-template-columns: 1fr;
        }
      }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}

.nav-menu .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-menu .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: transparent;
  color: white;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


@media (max-width: 900px) {

  .nav {
    position: relative;
    min-height: 72px;
    flex-direction: row;
  }

  .nav-menu {
    display: none;

    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    padding: 14px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow);

    z-index: 1000;
  }

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

  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-menu .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;

    color: var(--text);
    font-size: 15px;
    font-weight: 600;

    border-radius: 9px;
  }

  .nav-menu .nav-links a:hover {
    background: var(--bg);
    color: var(--primary-dark);
  }


  .nav-menu .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    margin-top: 10px;
    padding-top: 14px;

    border-top: 1px solid var(--border);
  }

  .nav-menu .nav-actions a {
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-actions .outline {
    color: var(--primary-dark);
    border: 1px solid var(--border);
    background: white;
  }

  .nav-menu .nav-actions .solid {
    color: white;
    background: var(--primary);
  }


  /* Hamburger */

  .mobile-menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }

}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {

  .topbar .container {
    width: calc(100% - 32px);
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

}
    