﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;scroll-behavior:smooth;}
    body{
      width:100%;
      margin:0;
      overflow-x:hidden;
      background:#F5F7FB;
      color:#101828;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    }
    img,video,iframe,embed{max-width:100%;height:auto;}
    a{text-decoration:none;transition:all 0.25s ease;}

    :root {
      --primary: rgb(30,64,175);
      --accent-lime: #A3E635;
      --accent-violet: #8B5CF6;
      --bg-navy: #08111F;
      --bg-darker: #0F172A;
      --text-main: #101828;
      --text-muted: #64748B;
      --shadow-premium: 0 24px 70px rgba(15,23,42,.12);
      --border-light: rgba(15,23,42,.08);
    }

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(255,255,255,.68);
      backdrop-filter:blur(20px) saturate(155%);
      border-bottom:1px solid rgba(15,23,42,.08);
      box-shadow:0 14px 42px rgba(15,23,42,.06);
    }
    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:76px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }
    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }
    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:900;
      line-height:1.2;
      color:#101828;
      white-space:nowrap;
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }
    .desktop-nav::-webkit-scrollbar{display:none;}
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      color:#475467;
      text-decoration:none;
      font-size:14px;
      font-weight:800;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#101828;
      background:rgba(163,230,53,.22);
      border-color:rgba(37,99,235,.14);
      box-shadow:0 8px 24px rgba(37,99,235,.08);
    }
    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      background:rgba(255,255,255,.70);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
      box-shadow:0 10px 24px rgba(15,23,42,.08);
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#101828;
    }
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(8,17,31,.48);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:linear-gradient(180deg,#08111F 0%,#0F172A 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.32);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(255,255,255,.12);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#F8FAFC;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(255,255,255,.10);
      color:#F8FAFC;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -webkit-overflow-scrolling:touch;
      padding:14px;
    }
    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(255,255,255,.07);
      color:#F8FAFC;
      text-decoration:none;
      font-size:15px;
      font-weight:800;
      line-height.1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(163,230,53,.16);
    }
    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}
    @media (max-width:900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:68px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
    }
    @media (max-width:420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:118px;}
    }

    
    .atrium-hero {
      position: relative;
      background: radial-gradient(circle at 50% 0%, #EEF3FA 0%, #F5F7FB 70%);
      padding: 90px 0 110px;
      overflow: hidden;
      border-bottom: 1px solid var(--border-light);
    }
    .atrium-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }
    @media (max-width: 960px) {
      .atrium-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 999px;
      background: rgba(37,99,235,.07);
      border: 1px solid rgba(37,99,235,.15);
      color: var(--primary);
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 24px;
    }
    .badge-pill span.dot {
      width: 8px;
      height: 8px;
      background: var(--accent-lime);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent-lime);
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.15;
      margin: 0 0 20px;
      letter-spacing: -0.02em;
    }
    .hero-title span {
      background: linear-gradient(135deg, var(--primary) 30%, var(--accent-violet) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0 0 36px;
    }
    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    @media (max-width: 960px) {
      .hero-ctas { justify-content: center; }
    }
    .btn-primary {
      background: var(--primary);
      color: #fff;
      padding: 14px 28px;
      font-weight: 700;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(30,64,175,0.25);
    }
    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: #fff;
      color: var(--text-main);
      padding: 14px 28px;
      font-weight: 700;
      border-radius: 14px;
      border: 1px solid var(--border-light);
    }
    .btn-secondary:hover {
      background: #f8fafc;
      transform: translateY(-2px);
    }

    
    .command-atrium {
      position: relative;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow-premium);
    }
    .atrium-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
      padding-bottom: 12px;
    }
    .atrium-dots {
      display: flex;
      gap: 6px;
    }
    .atrium-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e2e8f0;
    }
    .atrium-dot.green { background: var(--accent-lime); }
    .atrium-label {
      font-size: 12px;
      font-weight: 800;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .task-orbit-visual {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .workflow-step {
      background: #fff;
      border: 1px solid rgba(15,23,42,.05);
      border-radius: 14px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
      box-shadow: 0 4px 12px rgba(15,23,42,.02);
      transition: all 0.3s ease;
    }
    .workflow-step:hover {
      transform: scale(1.02);
      border-color: var(--primary);
    }
    .step-badge {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
    }
    .step-1 { background: rgba(139, 92, 246, 0.1); color: var(--accent-violet); }
    .step-2 { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
    .step-3 { background: rgba(163, 230, 83, 0.2); color: #4d7c0f; }

    .step-info { flex: 1; min-width: 0; }
    .step-title { font-weight: 800; font-size: 14px; margin-bottom: 2px; color: var(--text-main); }
    .step-desc { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .step-status {
      font-size: 11px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 99px;
    }
    .status-running { background: rgba(139, 92, 246, 0.1); color: var(--accent-violet); }
    .status-hold { background: #fef3c7; color: #d97706; }
    .status-approved { background: #dcfce7; color: #15803d; }

    
    .features-section {
      padding: 100px 0;
      background: #fff;
    }
    .section-title-wrap {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
      padding: 0 16px;
    }
    .section-subtitle {
      color: var(--primary);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }
    .section-main-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 900;
      letter-spacing: -0.01em;
      margin: 0;
    }
    .features-grid {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    .feature-card {
      background: #F5F7FB;
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      background: #fff;
      box-shadow: var(--shadow-premium);
      border-color: rgba(30,64,175,0.15);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: #fff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 12px;
      color: var(--text-main);
    }
    .feature-card p {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-muted);
      margin: 0;
    }

    
    .insight-section {
      padding: 100px 0;
      background: #EEF3FA;
    }
    .articles-grid {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 28px;
    }
    @media (max-width: 480px) {
      .articles-grid { grid-template-columns: 1fr; }
    }
    .insight-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid rgba(15,23,42,.06);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 12px 30px rgba(15,23,42,0.04);
      transition: all 0.3s ease;
    }
    .insight-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-premium);
    }
    .insight-img-wrap {
      aspect-ratio: 16/10;
      background: #08111F;
      position: relative;
      overflow: hidden;
    }
    .insight-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .insight-card:hover .insight-img-wrap img {
      transform: scale(1.05);
    }
    .insight-meta {
      padding: 24px 24px 0;
      display: flex;
      gap: 12px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
    }
    .insight-body {
      padding: 16px 24px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .insight-title {
      font-size: 18px;
      font-weight: 800;
      line-height: 1.4;
      margin: 0 0 12px;
      color: var(--text-main);
    }
    .insight-summary {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .insight-footer {
      border-top: 1px solid var(--border-light);
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .read-link {
      font-weight: 800;
      font-size: 14px;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    
    .atrium-cta {
      background: var(--bg-navy);
      color: #fff;
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    .cta-container h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      margin: 0 0 20px;
      line-height: 1.2;
    }
    .cta-container p {
      font-size: 17px;
      color: rgba(255,255,255,0.7);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    
    .site-footer{
      position:relative;
      width:100%;
      background:linear-gradient(180deg,#08111F 0%,#0F172A 100%);
      color:#F8FAFC;
      padding:60px 0 24px;
      overflow:hidden;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .site-footer .logo span{color:#F8FAFC;}
    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(260px,1.35fr) repeat(3,minmax(150px,1fr));
      gap:28px;
      align-items:start;
    }
    .footer-brand,.footer-column{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(248,250,252,.74);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column h3{
      margin:0 0 14px;
      font-size:15px;
      color:#fff;
    }
    .footer-column ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(248,250,252,.74);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#fff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(248,250,252,.58);
      font-size:13px;
    }
    .footer-bottom p{
      margin:0;
      min-width:0;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-bottom a{
      color:rgba(248,250,252,.74);
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    @media (max-width:900px){
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
    }
    @media (max-width:640px){
      .footer-inner{grid-template-columns:1fr;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }