/*(c) HAXTER CORPORATION. ALL RIGHTS RESERVED. */
    :root{
      --bg:#ffffff;
      --bg-soft:#f5f8fc;
      --bg-silver:#eef3f8;
      --line:#d8e1ec;

      --text:#13304f;
      --text-soft:#5d7390;
      --text-light:#7f93ad;

      --blue:#2f80ed;
      --blue-light:#69a8ff;
      --blue-soft:#eaf3ff;
      --blue-dark:#173d6b;

      --silver:#c6d2df;
      --silver-dark:#a9b7c7;

      --radius:24px;
      --shadow:0 12px 40px rgba(38, 82, 140, 0.08);

      --max:1280px;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family: "Segoe UI", Arial, Helvetica, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.5;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    img{
      max-width:100%;
      display:block;
    }

    .container{
      width:min(var(--max), calc(100% - 48px));
      margin:0 auto;
    }

    /* Header */
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,0.92);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(23,61,107,0.08);
    }

    .header-inner{
      min-height:86px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:max-content;
    }

    .brand-mark{
      width:46px;
      height:46px;
      object-fit:contain;
    }

    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }

    .brand-name{
      font-size:1.08rem;
      font-weight:700;
      letter-spacing:.02em;
      color:var(--blue-dark);
    }

    .brand-sub{
      font-size:.82rem;
      color:var(--text-light);
      margin-top:4px;
    }

    .main-nav{
      display:flex;
      align-items:center;
      gap:26px;
      flex-wrap:wrap;
      justify-content:center;
    }

    .main-nav a{
      font-size:.95rem;
      color:var(--text-soft);
      transition:.2s ease;
      position:relative;
    }

    .main-nav a:hover{
      color:var(--blue-dark);
    }

    .main-nav a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-8px;
      width:0;
      height:2px;
      background:var(--blue);
      transition:.22s ease;
    }

    .main-nav a:hover::after{
      width:100%;
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:46px;
      padding:0 18px;
      border-radius:999px;
      font-weight:600;
      font-size:.95rem;
      transition:.22s ease;
      cursor:pointer;
      border:1px solid transparent;
      white-space:nowrap;
    }

    .btn-outline{
      border-color:var(--line);
      background:#fff;
      color:var(--blue-dark);
    }

    .btn-outline:hover{
      background:var(--bg-soft);
    }

    .btn-primary{
      background:linear-gradient(180deg, var(--blue-light), var(--blue));
      color:#fff;
      box-shadow:0 10px 25px rgba(47,128,237,0.18);
    }

    .btn-primary:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 30px rgba(47,128,237,0.24);
    }

    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      cursor:pointer;
      color:var(--blue-dark);
      font-size:1.2rem;
    }

    /* Hero */
    .hero{
      position:relative;
      overflow:hidden;
      padding:72px 0 48px;
      background:
        radial-gradient(circle at top right, rgba(105,168,255,0.14), transparent 32%),
        radial-gradient(circle at left center, rgba(198,210,223,0.22), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:40px;
      align-items:center;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:var(--blue-soft);
      color:var(--blue-dark);
      border:1px solid #d9e9ff;
      padding:10px 16px;
      border-radius:999px;
      font-size:.88rem;
      font-weight:600;
      margin-bottom:20px;
    }

    .eyebrow-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--blue);
    }

    .hero h1{
      font-size:clamp(2.5rem, 5vw, 4.5rem);
      line-height:1.04;
      letter-spacing:-0.04em;
      font-weight:750;
      color:var(--blue-dark);
      max-width:12ch;
    }

    .hero p{
      font-size:1.08rem;
      color:var(--text-soft);
      max-width:62ch;
      margin-top:20px;
    }

    .hero-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }

    .hero-panel{
      position:relative;
      background:linear-gradient(180deg, #ffffff, #f6fafe);
      border:1px solid #e2ebf5;
      border-radius:32px;
      box-shadow:var(--shadow);
      padding:28px;
      min-height:520px;
      overflow:hidden;
    }

    .hero-panel::before{
      content:"";
      position:absolute;
      inset:auto -10% -15% auto;
      width:460px;
      height:460px;
      background:radial-gradient(circle, rgba(47,128,237,0.16) 0%, rgba(47,128,237,0.06) 35%, transparent 70%);
      pointer-events:none;
    }

    .wave-badge{
      position:absolute;
      top:26px;
      right:26px;
      width:92px;
      opacity:.95;
    }

    .hero-card-stack{
      display:grid;
      gap:16px;
      position:relative;
      z-index:1;
      margin-top:110px;
    }

    .mini-card{
      background:#fff;
      border:1px solid #e6edf5;
      border-radius:22px;
      padding:18px 18px 16px;
      box-shadow:0 10px 26px rgba(35, 77, 129, 0.05);
    }

    .mini-card small{
      display:block;
      color:var(--blue);
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:10px;
      font-size:.72rem;
    }

    .mini-card h3{
      font-size:1.08rem;
      color:var(--blue-dark);
      margin-bottom:8px;
    }

    .mini-card p{
      margin:0;
      font-size:.95rem;
      color:var(--text-soft);
      max-width:none;
    }

    /* Logos strip */
    .trust-strip{
      padding:22px 0 8px;
    }

    .trust-box{
      border:1px solid #e7edf4;
      border-radius:26px;
      background:linear-gradient(180deg, #ffffff, #f9fbfe);
      padding:20px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      flex-wrap:wrap;
    }

    .trust-label{
      color:var(--text-light);
      font-size:.92rem;
      font-weight:600;
    }

    .trust-items{
      display:flex;
      align-items:center;
      gap:28px;
      flex-wrap:wrap;
      color:var(--silver-dark);
      font-weight:700;
      letter-spacing:.04em;
    }

    /* Shared section styles */
    section{
      padding:80px 0;
    }

    .section-head{
      max-width:760px;
      margin-bottom:30px;
    }

    .section-head .kicker{
      color:var(--blue);
      font-size:.85rem;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:12px;
      display:block;
    }

    .section-head h2{
      font-size:clamp(2rem, 3.2vw, 3rem);
      line-height:1.08;
      letter-spacing:-0.03em;
      color:var(--blue-dark);
      margin-bottom:14px;
    }

    .section-head p{
      color:var(--text-soft);
      font-size:1.04rem;
      max-width:65ch;
    }

    /* Products */
    .products{
      background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .products-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:22px;
    }

    .product-card{
      background:#fff;
      border:1px solid #e2ebf3;
      border-radius:28px;
      padding:26px;
      box-shadow:0 8px 24px rgba(23,61,107,0.045);
      transition:.25s ease;
      position:relative;
      overflow:hidden;
    }

    .product-card:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 34px rgba(23,61,107,0.09);
      border-color:#d7e4f2;
    }

    .product-card::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, var(--silver), var(--blue-light), var(--blue));
    }

    .product-tag{
      display:inline-block;
      font-size:.74rem;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:var(--blue);
      margin-bottom:14px;
    }

    .product-card h3{
      font-size:1.18rem;
      line-height:1.25;
      margin-bottom:6px;
      color:var(--blue-dark);
    }

    .product-model{
      color:var(--text-light);
      font-size:.92rem;
      font-weight:600;
      margin-bottom:14px;
    }

    .product-card p{
      color:var(--text-soft);
      font-size:.97rem;
      line-height:1.65;
    }

    /* Capabilities */
    .capabilities-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:22px;
    }

    .cap-card{
      background:var(--bg-soft);
      border:1px solid #e3ebf5;
      border-radius:26px;
      padding:26px;
    }

    .cap-number{
      width:46px;
      height:46px;
      border-radius:14px;
      background:#fff;
      border:1px solid #dbe7f3;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      color:var(--blue);
      margin-bottom:16px;
    }

    .cap-card h3{
      color:var(--blue-dark);
      margin-bottom:10px;
      font-size:1.12rem;
    }

    .cap-card p{
      color:var(--text-soft);
      font-size:.97rem;
    }

    /* CTA band */
    .cta-band{
      padding:0 0 90px;
    }

    .cta-box{
      background:linear-gradient(135deg, #eff6ff 0%, #ffffff 52%, #f3f7fc 100%);
      border:1px solid #dce7f3;
      border-radius:34px;
      padding:42px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      flex-wrap:wrap;
      box-shadow:var(--shadow);
    }

    .cta-copy h2{
      font-size:clamp(1.9rem, 3vw, 2.8rem);
      color:var(--blue-dark);
      line-height:1.08;
      margin-bottom:12px;
    }

    .cta-copy p{
      color:var(--text-soft);
      font-size:1.02rem;
      max-width:60ch;
    }

    /* Footer */
    .site-footer{
      background:#f7fafc;
      border-top:1px solid #dfe7f0;
      padding:54px 0 22px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr repeat(4, 1fr);
      gap:28px;
      align-items:start;
      margin-bottom:26px;
    }

    .footer-brand p{
      color:var(--text-soft);
      margin-top:14px;
      max-width:34ch;
      font-size:.95rem;
    }

    .footer-col h4{
      color:var(--blue-dark);
      font-size:.96rem;
      margin-bottom:14px;
    }

    .footer-col ul{
      list-style:none;
      display:grid;
      gap:10px;
    }

    .footer-col a{
      color:var(--text-soft);
      font-size:.94rem;
      transition:.2s ease;
    }

    .footer-col a:hover{
      color:var(--blue);
    }

    .footer-bottom{
      border-top:1px solid #e3eaf2;
      padding-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:var(--text-light);
      font-size:.9rem;
    }

    .footer-bottom-links{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    /* Responsive */
    @media (max-width: 1100px){
      .hero-grid,
      .products-grid,
      .capabilities-grid,
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }

      .footer-grid{
        grid-template-columns:1fr 1fr 1fr;
      }

      .footer-brand{
        grid-column:1 / -1;
      }
    }

    @media (max-width: 920px){
      .main-nav,
      .header-actions .btn{
        display:none;
      }

      .menu-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
      }

      .hero-grid,
      .products-grid,
      .capabilities-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .hero{
        padding-top:52px;
      }

      .hero-panel{
        min-height:auto;
      }

      .hero-card-stack{
        margin-top:90px;
      }

      .cta-box{
        padding:30px;
      }
    }

    @media (max-width: 640px){
      .container{
        width:min(var(--max), calc(100% - 28px));
      }

      .header-inner{
        min-height:76px;
      }

      .hero h1{
        max-width:none;
      }

      .cta-box{
        border-radius:26px;
      }

      .product-card,
      .cap-card,
      .mini-card{
        border-radius:22px;
      }
    }
  