    :root {
      --bg: #f5fbfa;
      --bg-2: #eef8ff;
      --paper: #ffffff;
      --text: #12313a;
      --muted: #51707a;
      --line: rgba(33, 119, 150, 0.14);
      --blue: #2a9fd6;
      --blue-deep: #1778b5;
      --green: #53c2b4;
      --green-deep: #2fa797;
      --mint: #dff7f0;
      --sky: #dff0ff;
      --sun: #fff5d9;
      --peach: #ffe9df;
      --shadow: 0 18px 50px rgba(31, 94, 122, 0.50);
      --radius: 26px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 10%, rgba(255, 222, 147, 0.35), transparent 18%),
        radial-gradient(circle at 92% 12%, rgba(83, 194, 180, 0.26), transparent 18%),
        radial-gradient(circle at 82% 70%, rgba(42, 159, 214, 0.14), transparent 22%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 46%, #ffffff 100%);
      line-height: 1.5;
    }
@font-face {
  font-family: 'Aramus'; /* Give your font a name */
  src: url('/static/html/Aramus.otf') format('opentype'); /* Path to the file */
  font-weight: normal;
  font-style: normal;
}
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    .container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
    .section { padding: 78px 0; }
    .section-tight { padding: 56px 0; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(245, 251, 250, 0.76);
      border-bottom: 1px solid rgba(33, 119, 150, 0.08);
    }

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

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

    .brand img {
      height: 42px;
      width: auto;
      filter: drop-shadow(0 10px 20px rgba(23, 120, 181, 0.10));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-weight: 700;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 66px 0 38px;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      z-index: -1;
    }

    .hero::before {
      width: 320px;
      height: 320px;
      background: rgba(83, 194, 180, 0.15);
      top: -90px;
      right: -80px;
    }

    .hero::after {
      width: 240px;
      height: 240px;
      background: rgba(255, 228, 164, 0.24);
      left: -70px;
      bottom: 10px;
    }

    @media (min-width: 768px) {
      .textcenter {
        text-align: center;
      }
    }

    .textleft {
      text-align: left;
    }

    .hero-grid {
      display: grid;
      /*grid-template-columns: 1.05fr 0.95fr;*/
      align-items: center;
      /*gap: 34px;*/
    }

    @media (min-width: 768px) {
      .problem-solution {
        max-width: 80%;
      }
      p {
        max-width: 100%;
      }
      h1,h2 {
        text-align: center;
        max-width: 100%;
      }
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(83, 194, 180, 0.14);
      color: #167f73;
      border: 1px solid rgba(83, 194, 180, 0.18);
      font-size: 0.92rem;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(83, 194, 180, 0.14);
    }

    h1, h2, h3, p { margin: 0; }
    h1 {
      margin-top: 18px;
      font-size: clamp(2.7rem, 4.6vw, 4.9rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      /*max-width: 10ch;*/
    }
    h2 {
      font-weight: normal;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }
    h3 {
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .lead {
      margin-top: 16px;
      font-size: 1.1rem;
      /*max-width: 48ch;*/
      color: var(--muted);
    }

    .btn-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 16px;
      font-weight: 800;
      transition: 0.18s ease;
      border: 1px solid transparent;
    }

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

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
      box-shadow: 0 16px 30px rgba(42, 159, 214, 0.20);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.82);
      border-color: var(--line);
      color: var(--text);
    }

    .proof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .pill {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.8);
      border: 1px solid var(--line);
      color: var(--muted);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .card,
    .mini-card,
    .demo-card,
    .faq-item,
    .cta-panel,
    .step,
    .use-case {
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .phone-wrap {
      position: relative;
      padding: 18px;
      border-radius: 34px;
      background: linear-gradient(180deg, #f9fffe 0%, #eef8ff 100%);
      border: 1px solid rgba(42, 159, 214, 0.16);
      box-shadow: 0 30px 80px rgba(42, 159, 214, 0.16);
    }

    .float-badge {
      position: absolute;
      padding: 12px 14px;
      border-radius: 18px;
      background: white;
      border: 1px solid var(--line);
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--text);
      box-shadow: var(--shadow);
    }

    .float-1 { top: 30px; right: -10px; }
    .float-2 { left: -6px; bottom: 36px; }

    .phone {
      max-width: 360px;
      margin: 0 auto;
      background: #1f4d5e;
      border-radius: 34px;
      padding: 14px;
    }

    .notch {
      width: 42%;
      height: 24px;
      background: #1f4d5e;
      border-radius: 0 0 18px 18px;
      margin: -20px auto 14px;
    }

    .screen {
      min-height: 610px;
      padding: 20px 16px 18px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 90% 14%, rgba(83, 194, 180, 0.16), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, #eef8ff 100%);
      position: relative;
      overflow: hidden;
    }

    .msg-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      color: var(--muted);
      font-weight: 800;
      font-size: 0.95rem;
    }

    .bubble {
      max-width: 84%;
      padding: 14px 16px;
      border-radius: 20px;
      margin-bottom: 12px;
      font-size: 0.98rem;
    }

    .bubble.user {
      margin-left: auto;
      color: white;
      background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
      border-bottom-right-radius: 6px;
    }

    .bubble.system {
      background: white;
      border: 1px solid var(--line);
      border-bottom-left-radius: 6px;
    }

    .input-bar {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.95);
      border: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      color: var(--muted);
      font-weight: 700;
    }

    .section-head {
      /*max-width: 660px;*/
      margin-bottom: 28px;
    }

    .problem-solution,
    .demo-grid {
      display: grid;
      /*grid-template-columns: 1fr 1fr;*/
      gap: 22px;
    }

    .card,
    .demo-card { padding: 28px; }

    .bullet-grid {
      margin-top: 18px;
      display: grid;
      gap: 14px;
    }

    .bullet {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 20px;
      background: rgba(255,255,255,0.62);
      border: 1px solid rgba(33, 119, 150, 0.08);
    }

    .thumb {
      width: 72px;
      height: 72px;
      border-radius: 18px;
      background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
      border: 1px solid rgba(42, 159, 214, 0.12);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .thumb svg { width: 62px; height: 62px; }

    .bullet p,
    .demo-card p,
    .use-case p,
    .faq-item p,
    .muted { color: var(--muted); }

    .steps {
      display: grid;
      /*grid-template-columns: repeat(3, 1fr);*/
      gap: 20px;
    }

    .step {
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      margin-bottom: 14px;
      background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    }

    .mini-illu {
      margin-top: 16px;
      width: 100%;
      height: 110px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fffef8 0%, #f0fbff 100%);
      border: 1px solid rgba(42, 159, 214, 0.10);
      display: grid;
      place-items: center;
    }

    .demo-box {
      margin-top: 18px;
      padding: 22px;
      border-radius: 20px;
      background: linear-gradient(135deg, #1f4d5e 0%, #217796 100%);
      color: white;
    }

    .phrase {
      margin-top: 10px;
      display: inline-flex;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      font-weight: 900;
      letter-spacing: 0.02em;
    }

    .number {
      margin-top: 16px;
      font-size: 1.08rem;
      font-weight: 800;
    }

    .badge-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .badge {
      padding: 11px 14px;
      border-radius: 999px;
      background: white;
      border: 1px solid var(--line);
      font-weight: 700;
    }

    .use-cases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .use-case { padding: 22px; }

    .use-case .thumb {
      width: 64px;
      height: 64px;
      margin-bottom: 12px;
    }

    .faq {
      display: grid;
      gap: 14px;
    }

    .faq-item { padding: 22px; }

    .cta-panel {
      padding: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(223, 247, 240, 0.88) 100%);
    }

    .footer {
      padding: 30px 0 42px;
      color: var(--muted);
      border-top: 1px solid rgba(33, 119, 150, 0.08);
    }

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

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      font-weight: 700;
    }

    .btn-glow {
      color: #fff;
      font-weight: 800;
      border: 0;
      border-radius: 999px;
      padding: 0.95rem 1.45rem;
      background: linear-gradient(135deg, var(--green), var(--blue));
      box-shadow:
        0 16px 40px rgba(91,140,255,0.30),
        0 0 0 1px rgba(255,255,255,0.10) inset;
    }

    @media (max-width: 1060px) {
      .hero-grid,
      .problem-solution,
      .demo-grid,
      .steps,
      .use-cases { grid-template-columns: 1fr; }
      .cta-panel { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 760px) {
      .nav { flex-wrap: wrap; padding: 14px 0; }
      .nav-links { width: 100%; justify-content: space-between; gap: 12px; font-size: 0.95rem; }
      .section { padding: 60px 0; }
      .card, .demo-card, .faq-item, .cta-panel, .step, .use-case { padding: 22px; }
      .screen { min-height: 520px; }
      .float-badge { display: none; }
      h1 { max-width: 12ch; }
      .bullet { grid-template-columns: 60px 1fr; }
      .thumb { width: 60px; height: 60px; }
    }
