
    :root {
      --bg: #f4f5f2;
      --bg-soft: #eef0ec;
      --bg-dark: #cecece;
      --surface: #ffffff;
      --surface-dark: #0e1116;
      --text: #121417;
      --text-soft: #6f766d;
      --text-dark-soft: #96a091;
      --primary: #238a3d;
      --primary-strong: #1d7433;
      --primary-soft: #dff2e3;
      --border: #dde3da;
      --border-dark: #232a31;
      --shadow: 0 10px 30px rgba(18, 20, 23, 0.06);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 24px;
      --container: 1180px;
      --header-height: 76px;
      --transition: 240ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    button,
    input {
      font: inherit;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-height);
      z-index: 1000;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.72);
      border-bottom: 1px solid rgba(221, 227, 218, 0.75);
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .brand img {
      height: 45px;
      width: auto;
      object-fit: contain;
    }

    .nav-toggle {
      display: none;
      border: 0;
      background: transparent;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      cursor: pointer;
      color: var(--text);
    }

    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      margin: 5px auto;
      transition: var(--transition);
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #596058;
      font-size: 0.95rem;
    }

    .site-nav a {
      transition: color var(--transition);
    }

    .site-nav a:hover {
      color: var(--text);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      border: 1px solid transparent;
      border-radius: 12px;
      min-height: 46px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      cursor: pointer;
      transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
      white-space: nowrap;
    }

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

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 18px rgba(35, 138, 61, 0.18);
    }

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

    .btn-secondary {
      background: var(--surface);
      color: var(--text);
      border-color: var(--border);
    }

    .btn-secondary:hover {
      border-color: #c8d0c6;
      background: #fafbf9;
    }

    .btn-dark-outline {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }

    .btn-dark-outline:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-light {
      background: #fff;
      color: var(--primary-strong);
      border-color: #fff;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-strong);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(35, 138, 61, 0.12);
    }

    .section {
      padding: 56px 0;
      position: relative;
    }

    .section.hero {
      padding-top: calc(var(--header-height) + 48px);
      padding-bottom: 70px;
      background-color: #fff;
    }

    .modular-section {
        background-color: #fff;
    }

    .section-dark {
      background: var(--surface-dark);
      color: #fff;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 24px;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3.75rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-top: 12px;
      margin-bottom: 16px;
    }

    .section-title p {
      max-width: 680px;
      color: var(--text-soft);
      font-size: 1.05rem;
    }

    .section-dark .section-title p {
      color: var(--text-dark-soft);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
      gap: 42px;
      align-items: center;
    }

    .hero-copy h1 {
      font-size: clamp(3rem, 6vw, 5.3rem);
      line-height: 0.95;
      letter-spacing: -0.055em;
      margin: 18px 0 18px;
      max-width: 720px;
    }

    .highlight {
      color: var(--primary);
    }

    .hero-copy p {
      max-width: 530px;
      color: var(--text-soft);
      font-size: 1.12rem;
      margin-bottom: 22px;
    }

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

    .hero-note {
      color: #8a9288;
      font-size: 0.9rem;
    }

    .hero-visual {
      background: linear-gradient(180deg, #ffffff 0%, #f4f7f2 100%);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(18, 20, 23, 0.08);
      min-height: 520px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(35, 138, 61, 0.12), transparent 35%);
      pointer-events: none;
    }

    .mock-window {
      width: 100%;
      height: 100%;
      border-radius: 22px;
      background: linear-gradient(180deg, #fcfdfb 0%, #f2f5f1 100%);
      border: 1px solid #e6ebe4;
      padding: 18px;
      display: grid;
      gap: 16px;
    }

    .mock-toolbar {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mock-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #d7ddd4;
    }

    .mock-search {
      height: 16px;
      width: 180px;
      border-radius: 999px;
      background: #ebefea;
      margin-left: 8px;
    }

    .mock-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .mock-card {
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e8ece6;
      padding: 16px;
      min-height: 90px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 10px 24px rgba(18, 20, 23, 0.04);
    }

    .mock-label {
      width: 44%;
      height: 10px;
      border-radius: 999px;
      background: #edf1eb;
    }

    .mock-value {
      width: 70%;
      height: 18px;
      border-radius: 999px;
      background: #dde7da;
    }

    .icon-box {
      background: var(--bg-dark);
    }

    .icon-box-dark {
      background: #11240c;
      color: var(--primary);
    }
    .box-float-left {
      float: left;
      margin-right: 20px;
      margin-top: 10px;
    }

    .mock-value.is-green,
    .mock-chart .bar.is-green,
    .mock-list-dot.is-green{
      background: var(--primary);
    }

    .mock-chart {
      display: flex;
      align-items: end;
      gap: 10px;
      height: 180px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid #e8ece6;
      padding: 20px;
      box-shadow: 0 10px 24px rgba(18, 20, 23, 0.04);
    }

    .mock-chart .bar {
      flex: 1;
      border-radius: 10px 10px 4px 4px;
      background: #dce5da;
    }

    .mock-chart .bar:nth-child(1) { height: 38%; }
    .mock-chart .bar:nth-child(2) { height: 54%; }
    .mock-chart .bar:nth-child(3) { height: 48%; }
    .mock-chart .bar:nth-child(4) { height: 67%; }
    .mock-chart .bar:nth-child(5) { height: 60%; }
    .mock-chart .bar:nth-child(6) { height: 78%; }
    .mock-chart .bar:nth-child(7) { height: 92%; }

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

    .mock-item {
      display: grid;
      grid-template-columns: 14px 1fr 56px;
      align-items: center;
      gap: 12px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #e8ece6;
      padding: 12px 14px;
    }

    .mock-list-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: #dce5da;
    }

    .mock-line {
      height: 10px;
      border-radius: 999px;
      background: #e9eee8;
    }

    .mock-pill {
      height: 10px;
      border-radius: 999px;
      background: #dbe6d8;
    }

    .cards-grid {
      display: grid;
      gap: 18px;
    }

    .cards-grid.grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cards-grid.grid-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .card.dark {
      background: #131821;
      border-color: var(--border-dark);
      box-shadow: none;
    }

    .icon-box {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border-radius: 12px;
      color: var(--primary);
      margin-bottom: 18px;
      font-size: 22px;
    }

    .card h3,
    .feature h3 {
      font-size: 1.15rem;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .card p,
    .feature p {
      color: var(--text-soft);
      font-size: 0.97rem;
    }

    .card.dark p {
      color: var(--text-dark-soft);
    }

    .section-footnote {
      margin-top: 22px;
      color: #61705d;
      font-size: 0.97rem;
      padding-left: 18px;
      border-left: 4px solid var(--primary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      margin-bottom: 32px;
    }

    .feature {
      padding: 8px 2px;
    }

    .flow-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 30px 22px;
      box-shadow: var(--shadow);
    }

    .flow-caption {
      text-align: center;
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .flow-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      align-items: center;
    }

    .flow-node {
      padding: 20px 14px;
      text-align: center;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: #fbfcfa;
      min-height: 106px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .flow-node strong {
      display: block;
      font-size: 0.98rem;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .flow-node span {
      color: var(--text-soft);
      font-size: 0.88rem;
    }

    .flow-center {
      color: #fff;
      border-color: transparent;
      box-shadow: 0 18px 28px rgba(35, 138, 61, 0.22);
    }


    .flow-center{
      background: var(--primary);
    }

    .flow-center span {
      color: rgba(255, 255, 255, 0.82);
    }

    .flow-arrow {
      position: absolute;
      right: -16px;
      top: 50%;
      transform: translateY(-50%);
      color: #b5beb2;
      font-weight: 800;
      font-size: 1.2rem;
      z-index: 2;
    }

    .flow-node:last-child .flow-arrow {
      display: none;
    }

    .dark-divider-note {
      margin-top: 22px;
      padding-top: 20px;
      color: #7f8b7b;
    }

    .modules-visual {
      margin-top: 32px;
      background: transparent;
      display: grid;
      gap: 14px;
      justify-items: center;
    }

    .module-box,
    .module-box-wide {
      border-radius: 16px;
      padding: 20px 22px;
      text-align: center;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .module-box {
      min-width: 300px;
    }

    .module-box strong,
    .module-box-wide strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .module-box span,
    .module-box-wide span {
      color: var(--text-soft);
      font-size: 0.92rem;
    }

    .module-box.is-primary {
      background: var(--primary);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 18px 28px rgba(35, 138, 61, 0.22);
    }

    .module-box.is-primary span {
      color: rgba(255, 255, 255, 0.82);
    }

    .module-arrow {
      color: #aab4a8;
      font-size: 1.4rem;
      font-weight: 800;
      line-height: 1;
    }

    .module-box-wide {
      width: min(100%, 900px);
      background: #f6f8f5;
    }

    .chip-row {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-strong);
      border: 1px solid #cae6d2;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .section-cta-inline {
      margin-top: 20px;
      text-align: center;
      color: #5f675c;
      font-weight: 600;
    }

    .section-cta-inline strong {
      color: var(--text);
    }

    .cta-section {
      background: var(--primary);
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .cta-section .container {
      position: relative;
    }

    .cta-section .eyebrow {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      margin-bottom: 12px;
    }

    .cta-section .eyebrow::before {
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
    }

    .cta-section h2 {
      font-size: clamp(2.2rem, 4vw, 4.4rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      margin-bottom: 16px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.08rem;
      margin-bottom: 26px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 24px;
    }

    .waitlist {
      width: min(100%, 430px);
      margin: 0 auto;
    }

    .waitlist label {
      display: block;
      margin-bottom: 10px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.84);
    }

    .waitlist-field {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 14px;
      padding: 8px;
    }

    .waitlist-field input {
      flex: 1;
      min-width: 0;
      background: transparent;
      border: 0;
      outline: none;
      color: #fff;
      padding: 10px 12px;
    }

    .waitlist-field input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .solution-section{
        background-color: #fff;
    }

    .site-footer {
      background: #f8f9f6;
      border-top: 1px solid var(--border);
      padding: 26px 0;
    }

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

    .footer-nav {
      display: flex;
      gap: 20px;
      color: #667065;
      font-size: 0.94rem;
      flex-wrap: wrap;
    }

    .footer-copy {
      color: #7d857a;
      font-size: 0.88rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(48px);
      transition: opacity 700ms ease, transform 700ms ease;
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
    }

    .modal.is-open {
      display: flex;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(12, 16, 21, 0.58);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .modal-dialog {
      position: relative;
      width: min(100%, 520px);
      background: #fff;
      border-radius: 24px;
      border: 1px solid #e5ebe2;
      box-shadow: 0 28px 70px rgba(18, 20, 23, 0.22);
      padding: 28px;
      z-index: 1;
      animation: modalUp 220ms ease;
    }

    @keyframes modalUp {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: #fff;
      cursor: pointer;
      color: #5e675d;
      font-size: 1.2rem;
    }

    .modal h3 {
      font-size: 2rem;
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
      max-width: 360px;
    }

    .modal p {
      color: var(--text-soft);
      margin-bottom: 20px;
    }

    .modal-placeholder {
      border: 1px dashed #cad5c8;
      background: #f8faf7;
      border-radius: 18px;
      padding: 20px;
      color: #647061;
    }

    .modal-placeholder strong {
      display: block;
      color: var(--text);
      margin-bottom: 8px;
    }

    body.modal-open {
      overflow: hidden;
    }

    /* Tokens */
    .fw-400{font-weight:400}
    .fw-500{font-weight:500}
    .fw-600{font-weight:600}
    .fw-700{font-weight:700}
    .fw-800{font-weight:800}

    /* Responsive Styles */

    @media (max-width: 1080px) {
      .hero-grid,
      .features-grid,
      .cards-grid.grid-3,
      .flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .flow-node:nth-child(2) .flow-arrow,
      .flow-node:nth-child(4) .flow-arrow {
        display: none;
      }

      .flow-node:nth-child(odd) .flow-arrow {
        display: block;
      }

      .hero-visual {
        min-height: 460px;
      }
    }

    @media (max-width: 860px) {
      :root {
        --header-height: 72px;
      }

      .nav-toggle {
        display: inline-block;
      }

      .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(18, 20, 23, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: var(--transition);
      }

      .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .site-nav a {
        padding: 10px 12px;
        border-radius: 10px;
      }

      .site-nav a:hover {
        background: #f5f7f3;
      }

      .header-actions .btn {
        display: none;
      }

      .hero-grid,
      .cards-grid.grid-3,
      .cards-grid.grid-4,
      .features-grid,
      .flow-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: auto;
      }

      .flow-node .flow-arrow {
        display: none;
      }

      .module-box,
      .module-box-wide {
        width: 100%;
        min-width: 0;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 74px 0;
      }

      .section.hero {
        padding-top: calc(var(--header-height) + 30px);
      }

      .hero-copy h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
      }

      .section-title h2,
      .cta-section h2,
      .modal h3 {
        font-size: clamp(2rem, 9vw, 3rem);
      }

      .card,
      .modal-dialog,
      .flow-card {
        padding: 20px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn,
      .cta-actions .btn,
      .waitlist-field {
        width: 100%;
      }

      .waitlist-field {
        flex-direction: column;
        align-items: stretch;
      }

      .waitlist-field .btn {
        width: 100%;
      }
    }
