:root {

      --brand-blue: #0a3faa;

      --brand-navy: #06255e;

      --text-main: #1f2933;

      --text-muted: #6b7280;

      --bg-light: #f5f6f9;

      --border-light: #e5e7eb;

      --radius-lg: 18px;

      --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.12);

    }



    * {

      box-sizing: border-box;

      margin: 0;

      padding: 0;

    }



    body {

      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      color: var(--text-main);

      background-color: #ffffff;

      line-height: 1.6;

    }



    img {

      max-width: 100%;

      display: block;

    }



    a {

      color: inherit;

      text-decoration: none;

    }



    header {

      position: sticky;

      top: 0;

      z-index: 50;

      background: rgba(255, 255, 255, 0.95);

      backdrop-filter: blur(12px);

      border-bottom: 1px solid #eef0f5;

    }



    .container {

      max-width: 1120px;

      margin: 0 auto;

      padding: 0 1.5rem;

    }



    .nav {

      display: flex;

      align-items: center;

      justify-content: space-between;

      padding: 1rem 0;

    }



    .nav-left {

      display: flex;

      align-items: center;

      gap: 0.75rem;

    }



    .logo-mark {

      height: 38px;

      width: auto;

    }



    .brand-name {

      font-weight: 700;

      font-size: 1.35rem;

      color: var(--brand-blue);

    }



    nav ul {

      display: flex;

      gap: 1.25rem;

      list-style: none;

      font-size: 0.95rem;

      font-weight: 500;

    }



    nav a {

      color: var(--text-muted);

      transition: color 0.15s ease;

    }



    nav a:hover {

      color: var(--brand-blue);

    }



    .nav-cta {

      display: flex;

      align-items: center;

      gap: 0.75rem;

    }



    .btn {

      display: inline-flex;

      align-items: center;

      justify-content: center;

      padding: 0.7rem 1.4rem;

      border-radius: 999px;

      font-size: 0.95rem;

      font-weight: 600;

      border: none;

      cursor: pointer;

      transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.15s ease;

      text-decoration: none;

      white-space: nowrap;

    }



    .btn-primary {

      background: var(--brand-blue);

      color: #ffffff;

      box-shadow: var(--shadow-soft);

    }



    .btn-primary:hover {

      background: #082f7e;

      transform: translateY(-1px);

    }



    .btn-ghost {

      background: transparent;

      color: var(--brand-blue);

      border: 1px solid rgba(10, 63, 170, 0.25);

    }



    .btn-ghost:hover {

      background: rgba(10, 63, 170, 0.04);

    }



    /* Hero */

    .hero {

      padding: 3.5rem 0 3rem;

    }



    .hero-grid {

      display: grid;

      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);

      gap: 3rem;

      align-items: center;

    }



    .hero-eyebrow {

      font-size: 0.85rem;

      font-weight: 600;

      letter-spacing: 0.08em;

      text-transform: uppercase;

      color: var(--brand-blue);

      margin-bottom: 0.6rem;

    }



    .hero h1 {

      font-size: clamp(2.4rem, 3vw + 1rem, 3.1rem);

      line-height: 1.1;

      margin-bottom: 0.9rem;

      color: var(--brand-navy);

    }



    .hero-highlight {

      color: var(--brand-blue);

    }



    .hero-subtitle {

      font-size: 1.02rem;

      color: var(--text-muted);

      margin-bottom: 1.5rem;

      max-width: 32rem;

    }



    .hero-actions {

      display: flex;

      flex-wrap: wrap;

      gap: 0.8rem;

      margin-bottom: 1.3rem;

    }



    .hero-footnote {

      font-size: 0.85rem;

      color: var(--text-muted);

    }



    .hero-card {

      background: var(--bg-light);

      border-radius: var(--radius-lg);

      padding: 1.7rem 1.6rem;

      box-shadow: var(--shadow-soft);

      border: 1px solid #e3e6f0;

    }



    .hero-card-title {

      font-size: 0.95rem;

      font-weight: 600;

      color: var(--brand-blue);

      margin-bottom: 0.4rem;

      text-transform: uppercase;

      letter-spacing: 0.08em;

    }



    .hero-card h2 {

      font-size: 1.25rem;

      margin-bottom: 0.9rem;

    }



    .hero-metric-row {

      display: flex;

      flex-direction: column;

      gap: 0.8rem;

      margin-bottom: 1rem;

    }



    .metric {

      display: flex;

      justify-content: space-between;

      font-size: 0.9rem;

    }



    .metric span:first-child {

      color: var(--text-muted);

    }



    .metric span:last-child {

      font-weight: 600;

      color: var(--brand-navy);

    }



    .pill {

      display: inline-flex;

      align-items: center;

      gap: 0.35rem;

      padding: 0.35rem 0.7rem;

      border-radius: 999px;

      background: rgba(10, 63, 170, 0.06);

      font-size: 0.8rem;

      color: var(--brand-blue);

      margin-top: 0.8rem;

    }



    /* Sections */

    section {

      padding: 3.25rem 0;

    }



    section:nth-of-type(odd) {

      background-color: #ffffff;

    }



    section:nth-of-type(even) {

      background-color: var(--bg-light);

    }



    section header.section-header {

      margin-bottom: 2rem;

      text-align: center;

    }



    .section-title {

      font-size: 1.7rem;

      margin-bottom: 0.4rem;

      color: var(--brand-navy);

    }



    .section-subtitle {

      font-size: 0.98rem;

      color: var(--text-muted);

      max-width: 34rem;

      margin: 0 auto;

    }



    /* Three columns */

    .grid-3 {

      display: grid;

      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 1.7rem;

    }



    .card {

      background: #ffffff;

      border-radius: var(--radius-lg);

      border: 1px solid var(--border-light);

      padding: 1.4rem 1.4rem 1.3rem;

      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);

    }



    .card h3 {

      font-size: 1.05rem;

      margin-bottom: 0.5rem;

      color: var(--brand-navy);

    }



    .card p {

      font-size: 0.92rem;

      color: var(--text-muted);

    }



    .card-label {

      font-size: 0.8rem;

      text-transform: uppercase;

      letter-spacing: 0.1em;

      color: var(--brand-blue);

      margin-bottom: 0.3rem;

    }



    .tag-row {

      display: flex;

      flex-wrap: wrap;

      gap: 0.4rem;

      margin-top: 0.6rem;

    }



    .tag {

      padding: 0.25rem 0.6rem;

      border-radius: 999px;

      border: 1px solid rgba(10, 63, 170, 0.18);

      font-size: 0.8rem;

      color: var(--text-muted);

      background: #ffffff;

    }



    /* Split layout */

    .split {

      display: grid;

      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);

      gap: 2.2rem;

      align-items: start;

    }



    .list {

      list-style: none;

      display: grid;

      gap: 0.9rem;

      font-size: 0.95rem;

      color: var(--text-muted);

    }



    .list li {

      position: relative;

      padding-left: 1.2rem;

    }



    .list li::before {

      content: "";

      position: absolute;

      left: 0;

      top: 0.55rem;

      width: 7px;

      height: 7px;

      border-radius: 999px;

      background: var(--brand-blue);

    }



    /* Pricing / CTA */

    .pricing-card {

      max-width: 620px;

      margin: 0 auto;

      text-align: center;

    }



    .price {

      font-size: 2rem;

      font-weight: 700;

      color: var(--brand-navy);

      margin-bottom: 0.2rem;

    }



    .price span {

      font-size: 0.85rem;

      font-weight: 500;

      color: var(--text-muted);

    }



    .small-note {

      font-size: 0.85rem;

      color: var(--text-muted);

      margin-top: 0.8rem;

    }



    /* Footer */

    footer {

      border-top: 1px solid #e5e7eb;

      padding: 1.8rem 0 2rem;

      background: #ffffff;

      font-size: 0.85rem;

      color: var(--text-muted);

    }



    .footer-row {

      display: flex;

      flex-wrap: wrap;

      gap: 1rem;

      justify-content: space-between;

      align-items: center;

    }



    .footer-links {

      display: flex;

      flex-wrap: wrap;

      gap: 0.9rem;

    }



    .footer-links a {

      color: var(--text-muted);

    }



    .footer-links a:hover {

      color: var(--brand-blue);

    }



    /* Responsive */

    @media (max-width: 900px) {

      nav ul {

        display: none; /* simple desktop-first nav; can add mobile menu later */

      }



      .hero-grid,

      .split,

      .grid-3 {

        grid-template-columns: minmax(0, 1fr);

      }



      .hero {

        padding-top: 2.4rem;

      }



      .hero-card {

        margin-top: 1.4rem;

      }

    }



    @media (max-width: 600px) {

      .nav-cta {

        display: none;

      }



      .hero-actions {

        flex-direction: column;

        align-items: stretch;

      }



      .card {

        padding: 1.2rem 1.1rem;

      }

    }
 /* Launcher button */
    #mymynd-chat-launcher {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 24px;
      background: #18181b;
      color: #ffffff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      z-index: 9999;
    }

    /* Chat widget container */
    #mymynd-chat-widget {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 340px;
      max-height: 70vh;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 9999;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    /* Header */
    .mymynd-chat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px;
      background: #020617;
      color: #f9fafb;
    }

    .mymynd-chat-subtitle {
      font-size: 12px;
      opacity: 0.8;
    }

    #mymynd-chat-close {
      border: none;
      background: transparent;
      color: #e5e7eb;
      font-size: 18px;
      cursor: pointer;
    }

    /* Messages area */
    #mymynd-chat-messages {
      padding: 10px 12px;
      overflow-y: auto;
      flex: 1;
      background: #f4f4f5;
    }

    .mymynd-message {
      margin-bottom: 8px;
      display: flex;
    }

    .mymynd-message.mymynd-assistant {
      justify-content: flex-start;
    }

    .mymynd-message.mymynd-user {
      justify-content: flex-end;
    }

    .mymynd-bubble {
      padding: 8px 10px;
      border-radius: 12px;
      max-width: 80%;
      font-size: 14px;
      line-height: 1.4;
    }

    .mymynd-assistant .mymynd-bubble {
      background: #e5e7eb;
      color: #111827;
      border-bottom-left-radius: 2px;
    }

    .mymynd-user .mymynd-bubble {
      background: #4f46e5;
      color: #ffffff;
      border-bottom-right-radius: 2px;
    }

    /* Input area */
    #mymynd-chat-form {
      display: flex;
      border-top: 1px solid #e5e7eb;
      padding: 8px;
      background: #ffffff;
    }

    #mymynd-chat-input {
      flex: 1;
      border-radius: 999px;
      border: 1px solid #d4d4d8;
      padding: 8px 12px;
      font-size: 14px;
    }

    #mymynd-chat-form button {
      margin-left: 6px;
      border-radius: 999px;
      border: none;
      padding: 8px 12px;
      font-size: 14px;
      cursor: pointer;
      background: #4f46e5;
      color: #ffffff;
    }

    #mymynd-chat-form button:disabled {
      opacity: 0.6;
      cursor: default;
    }
