  :root{
    --purple:#6760CE;
    --purple-dark:#4B4599;
    --purple-deep:#332F66;
    --yellow:#FDC94D;
    --bg:#FAFAFD;
    --surface:#FFFFFF;
    --text:#1F1B33;
    --text-muted:#655F7A;
    --border:#E8E5F2;
    --radius:16px;
    --maxw:1120px;
    --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    --font-display:"Plus Jakarta Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  }
  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{
    margin:0;
    font-family:var(--font);
    background:var(--bg);
    color:var(--text);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  h1,h2,h3,h4,.brand,.price,.price-card .price{
    font-family:var(--font-display);
    text-wrap:balance;
  }
  img{max-width:100%;display:block}
  a{color:inherit}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

  /* Nav */
  header.site{
    position:sticky;top:0;z-index:20;
    background:rgba(250,250,253,.85);
    backdrop-filter:saturate(180%) blur(10px);
    border-bottom:1px solid var(--border);
  }
  nav.wrap{
    display:flex;align-items:center;justify-content:space-between;
    padding-top:14px;padding-bottom:14px;
  }
  .brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:17px;text-decoration:none}
  .brand img{width:30px;height:30px}
  .nav-links{display:flex;align-items:center;gap:28px;font-size:14.5px;font-weight:600}
  .nav-links a{text-decoration:none;color:var(--text-muted)}
  .nav-links a:hover{color:var(--text)}
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:12px 22px;border-radius:999px;font-weight:700;font-size:14.5px;
    text-decoration:none;border:2px solid transparent;cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn-primary{background:var(--purple);color:#fff;box-shadow:0 8px 20px -8px rgba(103,96,206,.6)}
  .btn-primary:hover{background:var(--purple-dark);transform:translateY(-1px)}
  .btn-ghost{background:transparent;border-color:var(--border);color:var(--text)}
  .btn-ghost:hover{border-color:var(--purple)}
  .btn-sm{padding:9px 16px;font-size:13.5px}

  /* Hero */
  .hero{padding:76px 0 64px}
  .hero .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center}
  .hero .kicker{margin-bottom:16px}
  h1{font-size:50px;line-height:1.08;margin:0 0 20px;font-weight:800;letter-spacing:-.03em}
  h1 span{color:var(--purple)}
  .lead{font-size:18px;color:var(--text-muted);margin:0 0 32px;max-width:46ch}
  .cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:18px}
  .cta-note{font-size:13px;color:var(--text-muted)}
  .cta-note b{color:var(--text)}

  /* A phone showing the app's home screen, illustrative (not a real
     screenshot, we don't have one yet). Reads as "this is a cashier
     app you run on your phone" at a glance. No fake status bar/time,
     just the frame and the notch, so it doesn't look doubled-up next
     to a real phone's own chrome. Floats directly on the page, no
     card behind it. Height follows content (no fixed aspect-ratio)
     so adding menu items never clips. */
  .phone{
    position:relative;width:min(100%,240px);margin:0 auto;
    background:#0F0D1F;border-radius:34px;padding:10px;
    box-shadow:0 30px 56px -18px rgba(20,14,50,.35);
  }
  .phone-notch{
    position:absolute;top:10px;left:50%;transform:translateX(-50%);
    width:60px;height:16px;background:#0F0D1F;border-radius:0 0 12px 12px;z-index:2;
  }
  .phone-screen{
    background:var(--bg);border-radius:26px;
    padding:26px 14px 16px;
  }
  .app-greet{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
  .app-greet-hi{font-family:var(--font-display);font-weight:800;font-size:12px;color:var(--text)}
  .app-greet-sub{font-size:9px;color:var(--text-muted);margin-top:1px}
  .app-avatar{width:22px;height:22px;border-radius:7px}
  .app-stat{
    background:linear-gradient(135deg,var(--purple),var(--purple-dark));
    border-radius:12px;padding:12px 14px;margin-bottom:14px;
    display:flex;flex-direction:column;gap:3px;
  }
  .app-stat span{color:rgba(255,255,255,.75);font-size:9px;font-weight:600}
  .app-stat b{color:#fff;font-size:15px;font-family:var(--font-display)}
  .app-menu{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
  .app-menu-item{
    background:var(--surface);border:1px solid var(--border);border-radius:10px;
    padding:10px 8px;display:flex;flex-direction:column;gap:6px;
  }
  .app-menu-icon{width:22px;height:22px;border-radius:7px;display:flex;align-items:center;justify-content:center}
  .app-menu-icon svg{width:12px;height:12px}
  .app-menu-item span{font-size:9px;font-weight:700;color:var(--text)}

  /* Value strip */
  .strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--surface)}
  .strip .wrap{display:flex;flex-wrap:wrap;gap:14px 40px;padding:22px 24px;justify-content:center}
  .strip-item{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:700;color:var(--text-muted)}
  .strip-item svg{width:18px;height:18px;flex:none;color:var(--purple)}

  /* Section heading */
  .section{padding:88px 0}
  .section-head{max-width:640px;margin:0 auto 48px;text-align:center}
  .kicker{color:var(--purple);font-weight:800;font-size:13px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px}
  h2{font-size:32px;margin:0 0 14px;letter-spacing:-.01em;font-weight:800}
  .section-head p{color:var(--text-muted);font-size:16.5px;margin:0}

  /* Feature grid */
  .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
  .card{
    background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
    padding:28px 26px;
  }
  .icon-tile{
    width:46px;height:46px;border-radius:13px;flex:none;
    display:flex;align-items:center;justify-content:center;margin-bottom:18px;
  }
  .icon-tile svg{width:22px;height:22px}
  .tile-purple{background:#EFEDFB;color:var(--purple)}
  .tile-yellow{background:#FFF6E0;color:#B4860B}
  .card h3{font-size:17px;margin:0 0 8px;font-weight:800}
  .card p{margin:0;color:var(--text-muted);font-size:14.5px;line-height:1.6}

  /* Kas reconciliation is the differentiator small-business owners trust
     us on most, so it gets the wide highlighted slot instead of sitting
     as just another equal-weight tile. */
  .card.featured{
    grid-column:1/-1;
    display:flex;gap:24px;align-items:flex-start;
    background:#F6F5FC;border-color:var(--purple);
  }
  .card.featured .icon-tile{width:56px;height:56px;margin-bottom:0}
  .card.featured .icon-tile svg{width:26px;height:26px}
  .card.featured h3{font-size:19px}
  .card.featured p{font-size:15px;max-width:62ch}

  /* Cara Kerja / How it works */
  .steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
  .step{position:relative;padding-top:8px}
  .step-num{
    width:38px;height:38px;border-radius:50%;
    background:var(--purple-deep);color:#fff;font-family:var(--font-display);
    font-weight:800;font-size:15px;display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
  }
  .step h3{font-size:16px;margin:0 0 8px;font-weight:800}
  .step p{margin:0;color:var(--text-muted);font-size:14px;line-height:1.6}

  /* FAQ */
  .faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
  .faq-item{
    border:1px solid var(--border);border-radius:14px;background:var(--surface);
    padding:6px 22px;
  }
  .faq-item summary{
    padding:16px 0;font-weight:700;font-size:15px;cursor:pointer;
    list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;
  }
  .faq-item summary::-webkit-details-marker{display:none}
  .faq-item summary::after{
    content:"+";font-size:20px;font-weight:400;color:var(--purple);flex:none;
    transition:transform .15s ease;
  }
  .faq-item[open] summary::after{transform:rotate(45deg)}
  .faq-item p{margin:0 0 18px;color:var(--text-muted);font-size:14.5px;line-height:1.65}

  /* Pricing / one-time purchase banner */
  .banner{
    background:linear-gradient(135deg,var(--purple-deep),var(--purple-dark) 55%,var(--purple));
    border-radius:24px;padding:52px 44px;color:#fff;
    display:grid;grid-template-columns:1.3fr .7fr;gap:32px;align-items:center;
    position:relative;overflow:hidden;
  }
  .banner::after{
    content:"";position:absolute;width:340px;height:340px;border-radius:50%;
    background:radial-gradient(circle,rgba(253,201,77,.25),transparent 70%);
    right:-80px;top:-120px;
  }
  .banner h2{color:#fff;position:relative}
  .banner p{color:rgba(255,255,255,.86);font-size:15.5px;max-width:48ch;position:relative}
  .price-card{
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
    border-radius:16px;padding:26px;text-align:center;position:relative;
  }
  .price-card .price{font-size:30px;font-weight:800;color:var(--yellow)}
  .price-card .price-sub{font-size:13px;color:rgba(255,255,255,.8);margin-top:2px}
  .price-card ul{list-style:none;padding:0;margin:18px 0 22px;text-align:left;font-size:13.5px}
  .price-card li{display:flex;gap:8px;margin-bottom:8px;color:rgba(255,255,255,.88)}
  .price-card li svg{width:15px;height:15px;flex:none;margin-top:2px;color:var(--yellow)}
  .banner .btn-primary{background:var(--yellow);color:var(--purple-deep);box-shadow:none}
  .banner .btn-primary:hover{background:#fff}

  /* Roadmap / more apps: left intro + right stacked list, a different
     shape from the centered-header card-grid used for Fitur so the two
     sections don't read as the same template repeated. */
  .roadmap-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:48px;align-items:start}
  .roadmap-intro h2{font-size:28px}
  .roadmap-intro p{color:var(--text-muted);font-size:15.5px;margin:0 0 22px}
  .roadmap-list{display:flex;flex-direction:column;gap:12px}
  .rm-row{
    display:flex;align-items:center;gap:16px;
    border:1px solid var(--border);border-radius:14px;padding:16px 18px;
    background:var(--surface);
  }
  .rm-row.live{border-color:var(--purple);box-shadow:0 12px 24px -16px rgba(103,96,206,.35)}
  .rm-row-icon{width:38px;height:38px;border-radius:10px;flex:none}
  img.rm-row-icon{object-fit:contain;padding:4px;background:#F6F5FC}
  .rm-icon-placeholder{
    background:var(--border);color:var(--text-muted);
    display:flex;align-items:center;justify-content:center;
  }
  .rm-icon-placeholder svg{width:16px;height:16px}
  .rm-row-text{flex:1;min-width:0}
  .rm-row-text h4{margin:0 0 2px;font-size:14.5px;font-weight:800}
  .rm-row-text span{font-size:12.5px;color:var(--text-muted)}
  .badge-live, .badge-soon{
    flex:none;font-size:11px;font-weight:800;padding:5px 11px;border-radius:999px;
  }
  .badge-live{background:#EFEDFB;color:var(--purple-dark)}
  .badge-soon{background:var(--border);color:var(--text-muted)}

  /* Footer */
  footer{border-top:1px solid var(--border);padding:48px 0 32px}
  .footer-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;margin-bottom:32px}
  .footer-links{display:flex;gap:28px;font-size:14px;font-weight:600;color:var(--text-muted)}
  .footer-links a{text-decoration:none}
  .footer-links a:hover{color:var(--text)}
  .footer-bottom{font-size:13px;color:var(--text-muted);display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px}

  @media (max-width:860px){
    .hero .wrap{grid-template-columns:1fr}
    .phone{order:-1;max-width:220px}
    h1{font-size:34px}
    .grid{grid-template-columns:1fr 1fr}
    .banner{grid-template-columns:1fr}
    .roadmap-layout{grid-template-columns:1fr;gap:28px}
    .steps{grid-template-columns:1fr 1fr}
    .nav-links{display:none}
  }
  @media (max-width:560px){
    .grid{grid-template-columns:1fr}
    .steps{grid-template-columns:1fr}
    h1{font-size:29px}
    .lead{font-size:16px}
    .section{padding:60px 0}
    .banner{padding:34px 24px}
    .card.featured{flex-direction:column}
    .rm-row{flex-wrap:wrap}
  }
