:root{
      --bg:#020617;
      --panel:rgba(15,23,42,.82);
      --panel2:rgba(30,41,59,.72);
      --line:rgba(148,163,184,.16);
      --text:#f8fafc;
      --muted:#94a3b8;
      --cyan:#22d3ee;
      --cyan2:#67e8f9;
      --green:#22c55e;
      --amber:#f59e0b;
      --blue:#2563eb;
    }

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

    html,body{
      width:100%;
      height:100%;
      overflow:hidden !important;
      overscroll-behavior:none;
    }

    body{
      position:fixed;
      inset:0;
      font-family:Arial,Helvetica,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 50% 0%,rgba(37,99,235,.30),transparent 34%),
        radial-gradient(circle at 88% 62%,rgba(34,211,238,.12),transparent 28%),
        var(--bg);
    }

    body::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(56,189,248,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(56,189,248,.035) 1px,transparent 1px);
      background-size:56px 56px;
      mask-image:linear-gradient(to bottom,#000,transparent 82%);
    }

    .page{
      position:relative;
      width:100%;
      height:100%;
      display:grid;
      grid-template-rows:auto 1fr auto;
      overflow:hidden;
    }

    .topbar{
      width:min(1120px,calc(100% - 24px));
      margin:10px auto 0;
      padding:9px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border:1px solid var(--line);
      border-radius:15px;
      background:rgba(2,6,23,.72);
      backdrop-filter:blur(12px);
    }

    .brand{
      font-size:15.6px;
      font-weight:900;
      letter-spacing:.12em;
      white-space:nowrap;
    }

    .brand span{color:var(--cyan)}

    .nav{
      display:flex;
      gap:8px;
    }

    .nav button{
      border:0;
      padding:7px 11px;
      border-radius:10px;
      background:transparent;
      color:var(--muted);
      font:inherit;
      font-size:14.4px;
      cursor:pointer;
      transition:.2s ease;
    }

    .nav button:hover,
    .nav button.active{
      color:var(--cyan2);
      background:rgba(8,47,73,.42);
    }

    .status{
      display:flex;
      align-items:center;
      gap:7px;
      color:#86efac;
      font-size:13.2px;
      white-space:nowrap;
    }

    .status::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 12px var(--green);
    }

    main{
      min-height:0;
      width:min(1120px,calc(100% - 24px));
      margin:0 auto;
      overflow:hidden;
      position:relative;
    }

    .panel{
      position:absolute;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      padding:8px 0;
      animation:fade .25s ease;
    }

    .panel.active{display:flex}

    @keyframes fade{
      from{opacity:0;transform:translateY(6px)}
      to{opacity:1;transform:translateY(0)}
    }

    .home-inner,.content-inner{
      width:100%;
      max-height:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:7px;
      text-align:center;
    }

    .eyebrow{
      padding:6px 13px;
      border:1px solid rgba(34,211,238,.28);
      border-radius:999px;
      color:var(--cyan2);
      background:rgba(8,47,73,.34);
      font-size:13.2px;
      font-weight:700;
    }

    .rx{
      margin-top:2px;
      font-size:clamp(70px,9.6vw,106px);
      line-height:.82;
      font-weight:900;
      letter-spacing:-.07em;
      background:linear-gradient(180deg,#fff 0%,#dbeafe 52%,#93c5fd 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      text-shadow:0 0 30px rgba(59,130,246,.26);
    }

    .seven{
      color:var(--cyan);
      font-size:clamp(22px,2.4vw,29px);
      font-weight:800;
      letter-spacing:.30em;
      text-indent:.30em;
      text-shadow:0 0 18px rgba(34,211,238,.38);
    }

    h1{
      margin-top:2px;
      font-size:clamp(34px,4.8vw,50px);
      line-height:1;
      letter-spacing:-.035em;
    }

    .tagline{
      color:#dbeafe;
      font-size:clamp(17px,2vw,22px);
      line-height:1.28;
      font-weight:700;
    }

    .tagline span{color:var(--cyan2)}

    .divider{
      width:62px;
      height:2px;
      margin:2px 0;
      border-radius:999px;
      background:linear-gradient(90deg,transparent,var(--cyan),transparent);
      box-shadow:0 0 14px rgba(34,211,238,.50);
    }

    .stats,.product-grid{
      width:100%;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:10px;
    }

    .card,.product-card,.about-card,.modal-card{
      border:1px solid var(--line);
      border-radius:17px;
      background:linear-gradient(180deg,var(--panel2),var(--panel));
      box-shadow:0 12px 30px rgba(0,0,0,.18);
      backdrop-filter:blur(10px);
    }

    .card{
      min-height:88px;
      padding:10px 8px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
    }

    .value{
      color:var(--cyan);
      font-size:clamp(26px,3.6vw,37px);
      line-height:1;
      font-weight:900;
    }

    .label{
      margin-top:6px;
      color:var(--muted);
      font-size:10.8px;
      letter-spacing:.06em;
      text-transform:uppercase;
    }

    .line{
      color:#64748b;
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .section-title{
      font-size:clamp(32px,4.8vw,50px);
      letter-spacing:-.03em;
    }

    .section-subtitle{
      max-width:780px;
      color:var(--muted);
      font-size:15.6px;
      line-height:1.6;
    }

    .about-card p{
      color:#cbd5e1;
      font-size:15.6px;
      line-height:1.75;
    }

    .about-card strong{color:var(--cyan2)}

    .product-card{
      min-height:174px;
      padding:19px;
      text-align:left;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
      cursor:pointer;
      transition:.22s ease;
    }

    .product-card:hover{
      transform:translateY(-4px);
      border-color:rgba(34,211,238,.35);
    }

    .product-card h3{
      font-size:19.2px;
    }

    .product-card p{
      color:var(--muted);
      font-size:13.2px;
      line-height:1.55;
    }

    .product-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
    }

    .badge{
      width:max-content;
      padding:5px 8px;
      border-radius:999px;
      background:rgba(8,47,73,.42);
      color:var(--cyan2);
      font-size:10.8px;
      letter-spacing:.05em;
      text-transform:uppercase;
    }

    .detail-link{
      color:#cbd5e1;
      font-size:12px;
    }

    footer{
      padding:0 12px 8px;
      color:#64748b;
      text-align:center;
      font-size:12px;
    }

    .modal{
      position:fixed;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      background:rgba(2,6,23,.78);
      backdrop-filter:blur(8px);
      z-index:100;
    }

    .modal.open{display:flex}

    .modal-card{
      width:min(560px,100%);
      padding:26px;
      position:relative;
    }

    .close{
      position:absolute;
      top:12px;
      right:12px;
      width:32px;
      height:32px;
      border:1px solid var(--line);
      border-radius:10px;
      background:rgba(15,23,42,.86);
      color:var(--text);
      font-size:21.6px;
      cursor:pointer;
    }

    .modal-kicker{
      color:var(--cyan2);
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .modal h2{
      margin-top:8px;
      font-size:33.6px;
    }

    .modal p{
      margin-top:12px;
      color:#cbd5e1;
      font-size:15.6px;
      line-height:1.7;
    }

    .detail-list{
      margin-top:16px;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }

    .detail-item{
      padding:12px;
      border:1px solid var(--line);
      border-radius:12px;
      background:rgba(15,23,42,.58);
    }

    .detail-item span{
      display:block;
      color:var(--muted);
      font-size:10.8px;
      text-transform:uppercase;
      letter-spacing:.08em;
    }

    .detail-item strong{
      display:block;
      margin-top:5px;
      color:var(--text);
      font-size:14.4px;
    }

    .progress-wrap{
      margin-top:16px;
    }

    .progress-head{
      display:flex;
      justify-content:space-between;
      color:var(--muted);
      font-size:12px;
    }

    .progress{
      margin-top:7px;
      height:8px;
      border-radius:999px;
      background:rgba(148,163,184,.14);
      overflow:hidden;
    }

    .progress-bar{
      height:100%;
      width:0;
      border-radius:999px;
      background:linear-gradient(90deg,var(--blue),var(--cyan));
      transition:width .35s ease;
    }

    
    .founder-hero{
      width:100%;
      height:100%;
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
      align-items:center;
      gap:28px;
      padding:12px 8px;
    }

    .founder-copy{
      text-align:left;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:16px;
    }

    .founder-copy h1{
      margin:0;
      font-size:clamp(40px,5vw,78px);
      line-height:0.92;
      letter-spacing:-.04em;
    }

    .founder-copy h1 span{
      color:var(--cyan);
      text-shadow:0 0 22px rgba(34,211,238,.28);
    }

    .founder-description{
      max-width:650px;
      color:#cbd5e1;
      font-size:15px;
      line-height:1.7;
    }

    .founder-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    

    .collaboration-line{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:13px;
      color:var(--muted);
    }

    .collaboration-line strong:first-child{color:#38bdf8}
    .collaboration-line strong:last-child{color:#fbbf24}

    .founder-visual{
      position:relative;
      min-height:390px;
      display:flex;
      flex-direction: column;
      align-items:center;
      justify-content:center;
    }

    .founder-glow{
      position:absolute;
      width:340px;
      height:340px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(37,99,235,.38),transparent 66%);
      filter:blur(18px);
    }

    .photo-frame{
      position:relative;
      z-index:2;
      width:min(310px,78%);
      aspect-ratio:4/5;
      overflow:hidden;
      border:1px solid rgba(34,211,238,.28);
      border-radius:28px;
      margin: 0 auto;
      background:
        linear-gradient(180deg,rgba(15,23,42,.40),rgba(2,6,23,.88)),
        radial-gradient(circle at 50% 30%,rgba(37,99,235,.28),transparent 58%);
      box-shadow:0 22px 60px rgba(0,0,0,.42);
    }

    .founder-photo{
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center top;
      display:block;
    }

    .photo-fallback{
      width:100%;
      height:100%;
      display:none;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      background:
        linear-gradient(rgba(56,189,248,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(56,189,248,.035) 1px,transparent 1px);
      background-size:34px 34px;
    }

    .fallback-rx{
      font-size:86px;
      line-height:.8;
      font-weight:900;
      color:white;
    }

    .fallback-seven{
      margin-top:12px;
      color:var(--cyan);
      font-size:24px;
      font-weight:800;
      letter-spacing:.30em;
      text-indent:.30em;
    }

    .photo-fallback small{
      margin-top:18px;
      color:var(--muted);
      font-size:11px;
    }

    .identity-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 260px;
    max-width: 300px;
    margin: 18px auto 0;
    padding: 10px 12px;
    border: 1px solid rgba(100, 190, 255, .88);
    border-radius: 18px;
    background: rgba(8, 14, 32, .88);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, .28),
      0 0 24px rgba(34, 211, 238, 0.10);
    text-align: center;
    backdrop-filter: blur(12px);
    }

    .identity-name{
      font-size:14px;
      font-weight:600;
      letter-spacing:.08em;
      margin-bottom:10px;
    }

    .identity-role{
      margin-bottom:10px;
      color:#dbeafe;
      font-size:12px;
      line-height:1.6;
    }

    .identity-values{
      font-size:10px;
      opacity:.72;
      letter-spacing:.05em;
    }

    .identity-card{
    transition:.3s ease;
    }

    .identity-card:hover{
    transform:translateY(-4px);
    border-color:rgba(120,210,255,.35);
    box-shadow:0 16px 36px rgba(0,0,0,.10);
    }

@media(max-width:760px){
      .founder-hero{
        grid-template-columns:1fr;
        gap:10px;
        padding:6px 0;
      }

      .founder-copy{
        align-items:center;
        text-align:center;
        gap:9px;
      }

      .founder-copy h1{
        font-size:clamp(27px,7vw,38px);
      }

      .founder-description{
        font-size:11px;
        line-height:1.45;
      }

      .founder-actions{
        justify-content:center;
      }

      .button{
        padding:9px 12px;
        font-size:10px;
      }

      .founder-visual{
        min-height:230px;
      }

      .photo-frame{
        width:150px;
        border-radius:20px;
      }

      .identity-card{
        right:8%;
        bottom:8px;
        width:180px;
        padding:11px;
      }

      .identity-name{font-size:13px}
      .identity-role{font-size:9px}
      .identity-values{font-size:7px}

      .nav{gap:2px}
      .nav button{padding:7px 8px}
      .stats,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .download-grid{grid-template-columns:1fr;gap:10px}
      .download-card{min-height:auto;padding:14px}
      .download-card p{font-size:11px}
      .download-button{padding:9px 12px}
      .card{min-height:66px}
      .product-card{min-height:112px;padding:12px}
      .product-card p{font-size:10px}
      .section-subtitle{font-size:11px}
      .about-card{padding:16px}
      .about-card p{font-size:13.2px;line-height:1.55}
    }

    @media(max-height:620px){
      .eyebrow{display:none}
      .line{display:none}
      footer{display:none}
      .home-inner,.content-inner{gap:5px}
      .rx{font-size:54px}
      .seven{font-size:17px}
      h1{font-size:28px}
      .tagline{font-size:13px}
      .card{min-height:60px;padding:8px}
      .product-card{min-height:96px}
      .product-card p{display:none}
      .about-card p{font-size:12px;line-height:1.45}
    }
  
    /* DOWNLOAD CENTER CARD FIX */
    #download .content-inner{
      gap:12px !important;
    }

    #download .section-title{
      margin:0 !important;
      text-align:center !important;
    }

    #download .section-subtitle{
      max-width:860px !important;
      margin:0 auto 4px !important;
      text-align:center !important;
    }

    #download .download-grid{
      width:100% !important;
      display:grid !important;
      grid-template-columns:repeat(3,minmax(0,1fr)) !important;
      gap:16px !important;
      margin-top:8px !important;
      align-items:stretch !important;
    }

    #download .download-card{
      min-height:220px !important;
      padding:20px !important;
      display:flex !important;
      flex-direction:column !important;
      justify-content:space-between !important;
      gap:18px !important;
      text-align:left !important;
      border:1px solid rgba(34,211,238,.18) !important;
      border-radius:18px !important;
      background:
        linear-gradient(180deg,rgba(30,41,59,.88),rgba(15,23,42,.78)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 16px 34px rgba(0,0,0,.22) !important;
      backdrop-filter:blur(12px) !important;
    }

    #download .download-top{
      display:flex !important;
      flex-direction:column !important;
      gap:14px !important;
    }

    #download .download-card h3{
      margin:0 !important;
      color:var(--text) !important;
      font-size:20px !important;
      line-height:1.2 !important;
    }

    #download .download-card p{
      margin:9px 0 0 !important;
      color:var(--muted) !important;
      font-size:13px !important;
      line-height:1.55 !important;
    }

    #download .download-badge{
      width:max-content !important;
      max-width:100% !important;
      padding:7px 11px !important;
      border-radius:999px !important;
      font-size:10px !important;
      line-height:1.3 !important;
      letter-spacing:.05em !important;
      text-transform:uppercase !important;
    }

    #download .download-button{
      width:100% !important;
      min-height:42px !important;
      padding:11px 14px !important;
      border:1px solid var(--line) !important;
      border-radius:11px !important;
      color:#64748b !important;
      background:rgba(2,6,23,.52) !important;
      font:inherit !important;
      font-size:12px !important;
      cursor:not-allowed !important;
    }

    #download .download-note{
      margin-top:6px !important;
      padding:10px 14px !important;
      border:1px solid rgba(148,163,184,.10) !important;
      border-radius:12px !important;
      background:rgba(15,23,42,.38) !important;
      color:#64748b !important;
      font-size:11px !important;
      line-height:1.45 !important;
      text-align:center !important;
    }

    @media(max-width:900px){
      #download .download-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
      }
    }

    @media(max-width:620px){
      #download .download-grid{
        grid-template-columns:1fr !important;
      }

      #download .download-card{
        min-height:auto !important;
        padding:16px !important;
      }
    }
    /* =====================================================
   ABOUT PAGE POLISH
===================================================== */



.about-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-header h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-header p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}



.about-card {
  position: relative;
  width: 100%;
  padding: 22px 24px;
  overflow: hidden;

  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 59, 0.78),
      rgba(15, 23, 42, 0.58)
    );

  box-shadow:
    0 16px 36px rgba(2, 6, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(14px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    #22d3ee,
    rgba(37, 99, 235, 0.18)
  );
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow:
    0 22px 46px rgba(2, 6, 23, 0.3),
    0 0 24px rgba(34, 211, 238, 0.06);
}

.about-card h3 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 20px;
  font-weight: 800;
}

.about-card p {
  max-width: 720px;
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.about-card:nth-child(1) h3::before {
  content: "01 — ";
  color: var(--cyan);
}

.about-card:nth-child(2) h3::before {
  content: "02 — ";
  color: var(--cyan);
}

.about-card:nth-child(3) h3::before {
  content: "03 — ";
  color: var(--cyan);
}

/* =====================================================
   ABOUT PAGE FINAL
===================================================== */

#tentang {
  padding-top: 72px;
}

.about-wrapper {
  width: min(900px, 100%);
  margin: 0 auto;
}

.about-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.about-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-header h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-header p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-single-card {
  width: 100%;
  padding: 22px 26px;

  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 59, 0.76),
      rgba(15, 23, 42, 0.56)
    );

  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(14px);
}

.about-item {
  padding: 6px 0;
}

.about-item h3 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 19px;
  font-weight: 800;
}

.about-item h3 span {
  margin-right: 8px;
  color: var(--cyan);
}

.about-item p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

.about-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(
    90deg,
    rgba(34, 211, 238, 0.22),
    rgba(148, 163, 184, 0.08),
    transparent
  );
}