
  :root{
    --bg: #050014;
    --bg-1: #0A0420;
    --bg-2: #0D0628;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.16);
    --purple: #7C3AED;
    --purple-accent: #A855F7;
    --indigo: #6366F1;
    --orange: #F97316;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --font: 'Inter', sans-serif;
    --container: 1240px;
    --ease: cubic-bezier(.16,.84,.44,1);
  }
  *{margin:0; padding:0; box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg); color:var(--white); font-family:var(--font);
    overflow-x:hidden; -webkit-font-smoothing:antialiased;
  }
  img,svg,canvas{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
  }

  .bg-glow{
    position:fixed; inset:0; z-index:-3; pointer-events:none;
    background:
      radial-gradient(55% 40% at 15% 0%, rgba(124,58,237,0.28) 0%, rgba(124,58,237,0) 60%),
      radial-gradient(45% 35% at 90% 10%, rgba(249,115,22,0.12) 0%, rgba(249,115,22,0) 60%),
      radial-gradient(60% 45% at 50% 100%, rgba(99,102,241,0.18) 0%, rgba(99,102,241,0) 60%),
      var(--bg);
  }
  .bg-grain{
    position:fixed; inset:0; z-index:-2; pointer-events:none; opacity:.03;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .container{max-width:var(--container); margin:0 auto; padding:0 32px;}
  section{position:relative; padding:130px 0;}
  .divider{height:1px; background:linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);}

  h1,h2,h3,h4{font-family:var(--font); letter-spacing:-0.025em; line-height:1.1; font-weight:800;}

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px; font-size:11.5px; font-weight:700;
    letter-spacing:.14em; text-transform:uppercase; color:var(--purple-accent);
    background:rgba(124,58,237,0.1); border:1px solid rgba(168,85,247,0.25);
    padding:7px 15px; border-radius:999px;
  }
  .eyebrow::before{content:''; width:6px; height:6px; border-radius:50%; background:var(--purple-accent); box-shadow:0 0 8px var(--purple-accent);}
  .eyebrow.orange{color:#fdba74; background:rgba(249,115,22,.10); border-color:rgba(249,115,22,.28);}
  .eyebrow.orange::before{background:var(--orange); box-shadow:0 0 8px var(--orange);}

  .section-title{font-size:clamp(30px,4.2vw,46px); margin-bottom:18px;}
  .section-sub{color:var(--gray); font-size:17px; max-width:640px; line-height:1.7;}
  .section-head{text-align:center; display:flex; flex-direction:column; align-items:center; gap:16px; margin-bottom:64px;}
  .section-head.left{align-items:flex-start; text-align:left;}

  .grad-text{
    background:linear-gradient(120deg, var(--purple-accent), var(--indigo) 55%, var(--orange));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:14px 28px; border-radius:12px; font-weight:600; font-size:15px;
    border:1px solid transparent; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
    white-space:nowrap;
  }
  .btn-primary{ background:linear-gradient(135deg, var(--purple), var(--indigo)); color:var(--white); }
  .btn-primary:hover{ box-shadow:0 10px 34px rgba(124,58,237,.45); transform:translateY(-2px); }
  .btn-outline{ background:rgba(255,255,255,0.02); border:1px solid var(--border-strong); color:var(--white); }
  .btn-outline:hover{ border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.05); transform:translateY(-2px); }
  .btn-orange{ background:linear-gradient(135deg, var(--orange), #fb923c); color:var(--white); }
  .btn-orange:hover{ box-shadow:0 10px 30px rgba(249,115,22,.4); transform:translateY(-2px); }
  .btn-disabled{ background:rgba(255,255,255,.04); border:1px solid var(--border); color:var(--gray); cursor:not-allowed; }
  .btn-sm{padding:10px 20px; font-size:13.5px;}

  .glass{
    background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border:1px solid var(--border); border-radius:22px;
    backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  }

  .reveal{opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
  .reveal.in{opacity:1; transform:none;}
  .d1{transition-delay:.06s;} .d2{transition-delay:.12s;} .d3{transition-delay:.18s;}
  .d4{transition-delay:.24s;} .d5{transition-delay:.3s;} .d6{transition-delay:.36s;}
  .d7{transition-delay:.42s;} .d8{transition-delay:.48s;}

  .logo-placeholder{
    width:36px; height:36px; border-radius:10px;
    background:linear-gradient(135deg, var(--purple), var(--purple-accent));
    display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px;
    box-shadow:0 0 22px rgba(124,58,237,.5); flex-shrink:0;
  }
  .logo-placeholder.sm{width:28px; height:28px; font-size:13px; border-radius:8px;}
  .logo-placeholder.product{width:52px; height:52px; border-radius:14px; font-size:20px;}
  .logo-placeholder.orange{background:linear-gradient(135deg, var(--orange), #fbbf24); box-shadow:0 0 22px rgba(249,115,22,.45);}
  .logo-placeholder{position:relative; overflow:hidden;}
  .logo-placeholder img{position:absolute; inset:0; width:100%; height:100%; object-fit:contain; padding:4px; background:var(--bg-1); border-radius:inherit;}
  .logo-placeholder.product img{padding:8px;}

  /* ---------- Header ---------- */
  header{ position:fixed; top:0; left:0; right:0; z-index:200; padding:18px 0; transition:all .4s var(--ease); border-bottom:1px solid transparent; }
  header.scrolled{ background:rgba(5,0,20,.75); backdrop-filter:blur(18px) saturate(140%); -webkit-backdrop-filter:blur(18px) saturate(140%); border-bottom:1px solid var(--border); padding:13px 0; }
  .nav-inner{display:flex; align-items:center; justify-content:space-between; gap:20px;}
  .logo{display:flex; align-items:center; gap:10px; font-weight:800; font-size:18.5px;}
  .nav-links{display:flex; align-items:center; gap:32px;}
  .nav-links a{font-size:14px; font-weight:500; color:var(--gray); transition:color .25s; position:relative;}
  .nav-links a:hover{color:var(--white);}
  .nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;}
  .nav-toggle span{width:22px; height:2px; background:var(--white); border-radius:2px; transition:.3s;}

  /* ---------- Hero ---------- */
  .hero{padding:200px 0 130px; overflow:hidden;}
  #particleCanvas{position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.65;}
  .hero-inner{position:relative; z-index:2; text-align:center; max-width:900px; margin:0 auto;}
  .hero h1{font-size:clamp(38px,6.4vw,72px); margin-bottom:26px;}
  .hero p.sub{font-size:18.5px; color:var(--gray); line-height:1.75; max-width:680px; margin:0 auto 40px;}
  .hero-actions{display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:90px;}
  .hero-visual{position:relative; height:420px; max-width:920px; margin:0 auto;}
  .hero-visual svg{width:100%; height:100%;}

  /* ---------- Purpose / storytelling ---------- */
  .purpose-grid{display:grid; grid-template-columns:0.95fr 1.05fr; gap:64px; align-items:flex-start; margin-bottom:90px;}
  .purpose-copy p{color:var(--gray); font-size:16.5px; line-height:1.8; margin-bottom:18px;}
  .problem-list{display:flex; flex-direction:column; gap:12px; margin-top:8px;}
  .problem-item{
    display:flex; align-items:flex-start; gap:12px; padding:16px 18px; border-radius:14px;
    background:rgba(255,255,255,.025); border:1px solid var(--border); font-size:14.5px; color:#e4e4e7;
    transition:border-color .3s, background .3s;
  }
  .problem-item:hover{ border-color:rgba(168,85,247,.3); background:rgba(255,255,255,.04); }
  .problem-item .mark{ color:var(--orange); font-weight:800; flex-shrink:0; }

  .timeline-wrap{ overflow-x:auto; padding-bottom:6px; }
  .timeline{ display:flex; align-items:center; gap:0; min-width:780px; }
  .timeline-node{ display:flex; flex-direction:column; align-items:center; gap:12px; flex:1; text-align:center; }
  .timeline-dot{
    width:16px; height:16px; border-radius:50%; background:var(--bg);
    border:2px solid var(--purple-accent); box-shadow:0 0 14px rgba(168,85,247,.6);
    position:relative; z-index:2;
  }
  .timeline-node:first-child .timeline-dot{background:linear-gradient(135deg,var(--purple),var(--purple-accent)); border-color:transparent;}
  .timeline-node:last-child .timeline-dot{background:linear-gradient(135deg,var(--orange),#fbbf24); border-color:transparent; box-shadow:0 0 14px rgba(249,115,22,.6);}
  .timeline-label{font-size:13px; font-weight:600; color:var(--white);}
  .timeline-line{ flex:1.4; height:2px; background:linear-gradient(90deg, rgba(124,58,237,.5), rgba(249,115,22,.5)); margin-top:-30px; }

  /* ---------- Products ---------- */
  .products-wrap{display:flex; flex-direction:column; gap:32px;}
  .product-card{ position:relative; overflow:hidden; padding:56px; display:grid; grid-template-columns:auto 1fr; gap:20px 28px; }
  .product-card::before{ content:''; position:absolute; top:-30%; right:-15%; width:60%; height:160%; filter:blur(100px); opacity:.45; z-index:0; pointer-events:none; }
  .product-card.xtallo::before{ background:radial-gradient(circle, var(--purple-accent), transparent 70%); }
  .product-card.bandhan::before{ background:radial-gradient(circle, var(--orange), transparent 70%); }
  .product-card > *{position:relative; z-index:1;}
  .product-card .logo-placeholder{grid-row:span 1;}
  .product-head{grid-column:2;}
  .product-tag{ display:inline-block; font-size:12px; font-weight:600; padding:6px 13px; border-radius:999px; margin-bottom:16px; }
  .xtallo .product-tag{ color:#c4b5fd; background:rgba(124,58,237,.15); border:1px solid rgba(168,85,247,.3); }
  .bandhan .product-tag{ color:#fdba74; background:rgba(249,115,22,.14); border:1px solid rgba(249,115,22,.3); }
  .product-name{font-size:36px; margin-bottom:14px;}
  .xtallo .product-name{ background:linear-gradient(120deg,#c4b5fd,#7C3AED); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .bandhan .product-name{ background:linear-gradient(120deg,#fb923c,#F97316); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .product-desc{color:var(--gray); font-size:15.5px; line-height:1.75; margin-bottom:26px; max-width:560px;}
  .feature-pills{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px;}
  .feature-pill{ font-size:13px; padding:7px 14px; border-radius:999px; background:rgba(255,255,255,.04); border:1px solid var(--border); color:#e4e4e7; }
  .full-row{grid-column:1 / -1;}

  /* ---------- Ecosystem diagram ---------- */
  .ecosystem-diagram{ padding:56px; }
  .eco-core{ text-align:center; margin-bottom:40px; }
  .eco-core-badge{
    display:inline-flex; flex-direction:column; align-items:center; gap:6px; padding:22px 40px; border-radius:20px;
    background:linear-gradient(135deg, rgba(124,58,237,.22), rgba(99,102,241,.14)); border:1px solid rgba(168,85,247,.35);
  }
  .eco-core-badge strong{font-size:20px;}
  .eco-core-badge span{font-size:12.5px; color:var(--gray); letter-spacing:.05em; text-transform:uppercase;}
  .eco-connector{width:2px; height:36px; background:linear-gradient(180deg, var(--purple-accent), transparent); margin:0 auto;}
  .eco-engines{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:40px; }
  .eco-engine{ padding:18px 16px; text-align:center; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid var(--border); font-size:13.5px; font-weight:600; transition:all .3s; }
  .eco-engine:hover{ border-color:rgba(168,85,247,.35); background:rgba(124,58,237,.08); transform:translateY(-3px); }
  .eco-split{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:40px; }
  .eco-product{ padding:22px; border-radius:16px; text-align:center; }
  .eco-product.p1{ background:rgba(124,58,237,.1); border:1px solid rgba(168,85,247,.3); }
  .eco-product.p2{ background:rgba(249,115,22,.08); border:1px solid rgba(249,115,22,.28); }
  .eco-product strong{display:block; font-size:17px; margin-bottom:4px;}
  .eco-product span{font-size:12.5px; color:var(--gray);}
  .eco-future{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
  .eco-future-item{ padding:14px; text-align:center; border-radius:12px; border:1px dashed var(--border-strong); font-size:12.5px; color:var(--gray); }

  /* ---------- Why AI infographic ---------- */
  .whyai-grid{ display:grid; grid-template-columns:1fr auto 1fr; gap:40px; align-items:center; }
  .whyai-col{ padding:36px 30px; text-align:center; }
  .whyai-col h4{font-size:14px; letter-spacing:.06em; text-transform:uppercase; color:var(--gray); margin-bottom:20px; font-weight:700;}
  .whyai-col.old{ opacity:.75; }
  .whyai-arrow{ display:flex; align-items:center; justify-content:center; }
  .whyai-tags{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
  .whyai-tag{ padding:9px 16px; border-radius:999px; font-size:13.5px; font-weight:600; background:rgba(124,58,237,.12); border:1px solid rgba(168,85,247,.3); color:#e9d5ff; }
  .whyai-col.old .whyai-tag{ background:rgba(255,255,255,.03); border-color:var(--border); color:var(--gray); }
  .whyai-note{ text-align:center; color:var(--gray); font-size:15.5px; max-width:640px; margin:36px auto 0; line-height:1.7; }

  /* ---------- Problem cards ---------- */
  .problems-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  .problem-card{ padding:28px 24px; transition:all .4s var(--ease); }
  .problem-card:hover{ transform:translateY(-6px); border-color:rgba(168,85,247,.35); }
  .problem-card .icon{ width:42px; height:42px; border-radius:11px; margin-bottom:18px; display:flex; align-items:center; justify-content:center; background:rgba(124,58,237,.14); border:1px solid rgba(168,85,247,.25); }
  .problem-card h4{ font-size:15.5px; margin-bottom:10px; font-weight:700; }
  .stat-bar{ height:6px; border-radius:99px; background:rgba(255,255,255,.08); overflow:hidden; margin-top:14px; }
  .stat-fill{ height:100%; border-radius:99px; background:linear-gradient(90deg,var(--purple),var(--purple-accent)); width:0; transition:width 1.4s var(--ease); }
  .stat-label{ font-size:12px; color:var(--gray); margin-top:8px; }

  /* ---------- Vision timeline (vertical) ---------- */
  .vision-timeline{ max-width:600px; margin:0 auto; position:relative; }
  .vision-timeline::before{ content:''; position:absolute; left:15px; top:8px; bottom:8px; width:2px; background:linear-gradient(180deg, var(--purple-accent), var(--orange)); }
  .vision-step{ position:relative; padding-left:52px; padding-bottom:38px; }
  .vision-step:last-child{padding-bottom:0;}
  .vision-step::before{ content:''; position:absolute; left:6px; top:2px; width:20px; height:20px; border-radius:50%; background:var(--bg); border:2px solid var(--purple-accent); box-shadow:0 0 12px rgba(168,85,247,.5); }
  .vision-step.now::before{ background:linear-gradient(135deg,var(--purple),var(--purple-accent)); border-color:transparent; }
  .vision-step h4{ font-size:17px; margin-bottom:4px; }
  .vision-step p{ font-size:14px; color:var(--gray); }

  /* ---------- Partnership cards ---------- */
  .partner-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
  .partner-card{ padding:26px 22px; text-align:center; transition:all .35s var(--ease); }
  .partner-card:hover{ transform:translateY(-5px); border-color:rgba(168,85,247,.3); background:rgba(124,58,237,.06); }
  .partner-card .icon{ width:40px; height:40px; margin:0 auto 14px; border-radius:11px; display:flex; align-items:center; justify-content:center; background:rgba(124,58,237,.14); border:1px solid rgba(168,85,247,.25); }
  .partner-card h4{ font-size:14.5px; font-weight:600; }

  /* ---------- Comparison ---------- */
  .compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
  .compare-col{ padding:40px 34px; }
  .compare-col h3{ font-size:20px; margin-bottom:24px; display:flex; align-items:center; gap:10px; }
  .compare-col.trad{ opacity:.7; }
  .compare-col.xdq{ border-color:rgba(168,85,247,.35); background:linear-gradient(180deg, rgba(124,58,237,.08), rgba(255,255,255,.015)); }
  .compare-item{ display:flex; align-items:center; gap:12px; padding:13px 0; border-bottom:1px solid var(--border); font-size:14.5px; }
  .compare-item:last-child{border-bottom:none;}
  .compare-col.trad .compare-item::before{ content:'—'; color:var(--gray); font-weight:700; }
  .compare-col.xdq .compare-item::before{ content:'✓'; color:var(--green, #10B981); font-weight:800; }

  /* ---------- Tech stack ---------- */
  .tech-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
  .tech-card{ padding:26px 22px; transition:all .35s var(--ease); }
  .tech-card:hover{ transform:translateY(-5px); border-color:rgba(168,85,247,.3); }
  .tech-card h4{ font-size:15px; margin-bottom:10px; font-weight:700; }
  .tech-tags{ display:flex; flex-wrap:wrap; gap:6px; }
  .tech-chip{ font-size:11.5px; padding:4px 10px; border-radius:999px; background:rgba(255,255,255,.04); border:1px solid var(--border); color:var(--gray); }
  .tech-note{ text-align:center; color:var(--gray); font-size:13.5px; margin-top:28px; }

  /* ---------- Global opportunities ---------- */
  .globe-wrap{ position:relative; max-width:760px; margin:0 auto; height:520px; }
  .globe-wrap svg{ width:100%; height:100%; }
  .econ-label{ font-family:var(--font); font-size:12px; font-weight:600; fill:var(--white); }

  /* ---------- Investment / Contact panel ---------- */
  .contact-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:28px; align-items:stretch; }
  .contact-form-card{ padding:44px; }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .field{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
  .field label{ font-size:13px; font-weight:600; color:var(--gray); }
  .field input, .field textarea{
    background:rgba(255,255,255,.03); border:1px solid var(--border); border-radius:11px;
    padding:13px 15px; color:var(--white); font-family:inherit; font-size:14.5px;
    transition:border-color .25s, background .25s;
  }
  .field input:focus, .field textarea:focus{ outline:none; border-color:var(--purple-accent); background:rgba(124,58,237,.06); }
  .field textarea{ resize:vertical; min-height:120px; }
  .form-note{ font-size:12px; color:var(--gray); margin-top:14px; text-align:center; }

  .contact-info-card{ padding:44px; display:flex; flex-direction:column; justify-content:space-between; background:linear-gradient(160deg, rgba(124,58,237,.14), rgba(249,115,22,.05)); }
  .contact-info-card h3{ font-size:22px; margin-bottom:14px; }
  .contact-info-card p{ color:var(--gray); font-size:14.5px; line-height:1.7; margin-bottom:28px; }
  .info-row{ display:flex; flex-direction:column; gap:4px; margin-bottom:20px; }
  .info-row h5{ font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--gray); font-weight:600; }
  .info-row a, .info-row span{ font-size:15.5px; font-weight:600; color:var(--white); }
  .contact-info-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }

  /* ---------- Footer ---------- */
  footer{ border-top:1px solid var(--border); padding:70px 0 34px; }
  .footer-top{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr 1fr; gap:36px; margin-bottom:52px; }
  .footer-brand p{ color:var(--gray); font-size:14px; line-height:1.7; margin-top:16px; max-width:270px; }
  .footer-col h5{ font-size:13px; font-weight:700; margin-bottom:18px; color:var(--white); }
  .footer-col a, .footer-col span{ display:block; color:var(--gray); font-size:13.5px; margin-bottom:11px; transition:color .2s; }
  .footer-col a:hover{ color:var(--white); }
  .social-row{ display:flex; gap:10px; margin-top:20px; }
  .social-icon{ width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.04); border:1px solid var(--border); transition:all .25s; }
  .social-icon:hover{ background:rgba(124,58,237,.18); border-color:rgba(168,85,247,.4); transform:translateY(-3px); }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--border); font-size:13px; color:var(--gray); flex-wrap:wrap; gap:12px; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1100px){
    .purpose-grid{grid-template-columns:1fr; gap:48px;}
    .problems-grid{grid-template-columns:repeat(2,1fr);}
    .eco-engines{grid-template-columns:repeat(2,1fr);}
    .eco-future{grid-template-columns:repeat(2,1fr);}
    .partner-grid{grid-template-columns:repeat(2,1fr);}
    .tech-grid{grid-template-columns:repeat(2,1fr);}
    .footer-top{grid-template-columns:1fr 1fr 1fr; row-gap:36px;}
  }
  @media (max-width: 900px){
    .whyai-grid{grid-template-columns:1fr; gap:16px;}
    .whyai-arrow{ transform:rotate(90deg); padding:6px 0; }
    .compare-grid{grid-template-columns:1fr;}
    .contact-grid{grid-template-columns:1fr;}
    .product-card{grid-template-columns:1fr; text-align:left;}
    .product-head{grid-column:1;}
    .product-card::before{display:none;}
  }
  @media (max-width: 720px){
    .nav-links{
      position:fixed; top:64px; left:16px; right:16px; flex-direction:column; align-items:flex-start; gap:0;
      background:rgba(8,3,26,.97); border:1px solid var(--border); border-radius:16px; padding:8px;
      backdrop-filter:blur(20px); transform:translateY(-12px); opacity:0; pointer-events:none; transition:all .35s var(--ease);
    }
    .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
    .nav-links a{ padding:14px 12px; width:100%; border-bottom:1px solid var(--border); font-size:15px; }
    .nav-links a:last-child{border-bottom:none;}
    .nav-toggle{display:flex;}
    section{padding:84px 0;}
    .hero{padding:150px 0 80px;}
    .problems-grid{grid-template-columns:1fr;}
    .eco-engines{grid-template-columns:1fr;}
    .eco-split{grid-template-columns:1fr;}
    .eco-future{grid-template-columns:1fr 1fr;}
    .partner-grid{grid-template-columns:1fr;}
    .tech-grid{grid-template-columns:1fr;}
    .form-row{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr 1fr; gap:28px;}
    .footer-bottom{flex-direction:column; align-items:flex-start;}
    .globe-wrap{height:420px;}
    .ecosystem-diagram{padding:30px 20px;}
    .contact-form-card, .contact-info-card{padding:28px;}
  }

  ::selection{ background:rgba(124,58,237,.4); color:#fff; }
  ::-webkit-scrollbar{ width:10px; }
  ::-webkit-scrollbar-track{ background:var(--bg); }
  ::-webkit-scrollbar-thumb{ background:rgba(124,58,237,.4); border-radius:10px; }


/* ═══ v2 ADDITIONS — three products, trust, sub-pages ═══ */
.live-badge{display:inline-block;font-size:11px;font-weight:800;letter-spacing:.08em;
  text-transform:uppercase;padding:3px 9px;border-radius:999px;vertical-align:middle;
  margin-left:9px;background:rgba(16,185,129,.14);color:#34D399;border:1px solid rgba(16,185,129,.3);}
.logo-placeholder.product.violet{background:linear-gradient(140deg,#7C3AED,#6366F1);}
.product-card.quotarider::before{background:linear-gradient(90deg,#8B5CF6,#6366F1);}
.product-card.drapto::before{background:linear-gradient(90deg,#F97316,#FBBF24);}
.eco-product.p3{border-color:rgba(249,115,22,.3);}
.reveal.d3{transition-delay:.24s} .reveal.d4{transition-delay:.32s}

/* trust credentials */
.creds{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px;}
.cred{padding:24px;border-radius:16px;border:1px solid var(--border);
  background:rgba(255,255,255,.03);transition:border-color .3s,transform .3s;}
.cred:hover{border-color:var(--border-strong);transform:translateY(-4px);}
.cred-ico{width:42px;height:42px;border-radius:11px;display:grid;place-items:center;margin-bottom:14px;
  background:linear-gradient(140deg,var(--purple),var(--indigo));}
.cred-ico svg{width:20px;height:20px;stroke:#fff;fill:none;stroke-width:1.9;}
.cred h4{font-size:15px;color:var(--white);font-weight:700;}
.cred p{font-size:13px;color:var(--gray);margin-top:7px;line-height:1.6;}
.cred-val{display:block;margin-top:10px;font-size:13px;font-weight:700;color:#A855F7;
  font-family:ui-monospace,'SF Mono',monospace;letter-spacing:.02em;}
.cred-val.todo{color:#FBBF24;}

/* page hero for sub-pages */
.page-top{padding:130px 0 60px;position:relative;}
.page-top .eyebrow{margin-bottom:16px;}
.page-top h1{font-size:clamp(34px,5.4vw,62px);font-weight:800;letter-spacing:-.03em;
  line-height:1.06;color:var(--white);max-width:19ch;}
.page-top h1 em{font-style:normal;background:linear-gradient(100deg,#A855F7,#6366F1 55%,#F97316);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.page-top .lede{font-size:clamp(16px,1.9vw,19px);color:var(--gray);margin-top:22px;
  max-width:64ch;line-height:1.7;}
.crumb{font-size:13px;color:var(--gray);margin-bottom:18px;}
.crumb a{color:var(--gray);} .crumb a:hover{color:var(--white);}

/* long-form story */
.story{max-width:760px;}
.story h2{font-size:clamp(24px,3.2vw,34px);font-weight:800;letter-spacing:-.02em;
  color:var(--white);margin:46px 0 16px;}
.story h3{font-size:19px;color:var(--white);font-weight:700;margin:30px 0 10px;}
.story p{font-size:16px;color:var(--gray);line-height:1.8;margin-bottom:16px;}
.story ul{margin:0 0 18px 20px;} .story li{color:var(--gray);line-height:1.8;margin-bottom:9px;font-size:16px;}
.story strong{color:var(--white);font-weight:650;}
.pull{border-left:3px solid var(--purple-accent);padding:8px 0 8px 22px;margin:30px 0;}
.pull p{font-size:20px;color:var(--white);line-height:1.6;font-weight:500;}

/* roles / jobs */
.role{padding:26px;border-radius:16px;border:1px solid var(--border);background:rgba(255,255,255,.03);
  transition:border-color .3s,transform .3s;margin-bottom:14px;}
.role:hover{border-color:var(--border-strong);transform:translateY(-3px);}
.role-top{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;flex-wrap:wrap;}
.role h4{font-size:18px;color:var(--white);font-weight:700;}
.role-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px;}
.role-tag{font-size:11px;padding:4px 10px;border-radius:999px;border:1px solid var(--border);
  color:var(--gray);background:rgba(255,255,255,.03);}
.role p{font-size:14px;color:var(--gray);margin-top:12px;line-height:1.7;}

/* metric band */
.mband{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px;}
.mband div{padding:26px 22px;border-radius:16px;border:1px solid var(--border);
  background:rgba(255,255,255,.03);text-align:center;}
.mband b{display:block;font-size:clamp(28px,4vw,44px);font-weight:800;letter-spacing:-.03em;
  background:linear-gradient(120deg,#A855F7,#6366F1);-webkit-background-clip:text;
  background-clip:text;-webkit-text-fill-color:transparent;line-height:1;}
.mband span{display:block;font-size:13px;color:var(--gray);margin-top:11px;line-height:1.5;}

.note-box{border:1px solid rgba(251,191,36,.3);background:rgba(251,191,36,.07);
  border-radius:14px;padding:20px 24px;margin:26px 0;}
.note-box p{font-size:14px;color:#FDE68A;line-height:1.7;margin:0;}
@media(max-width:760px){.page-top{padding:104px 0 44px;}}

.cred-lab{display:block;font-size:10.5px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;
  color:#6B7280;margin-top:14px;padding-top:14px;border-top:1px solid var(--border);}
.cred-lab + .cred-val{margin-top:5px;padding-top:0;border:0;}
.cred p + .cred-lab{margin-top:16px;}

/* ═══ INVESTOR FORM ═══ */
.iform{max-width:640px;margin:0 auto;padding:34px;border-radius:20px;
  border:1px solid var(--border);background:rgba(255,255,255,.035);}
.iform-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.iform label{display:block;font-size:12px;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:#9CA3AF;margin-bottom:7px;}
.iform input,.iform select,.iform textarea{width:100%;box-sizing:border-box;padding:13px 15px;
  border-radius:11px;border:1px solid var(--border);background:rgba(0,0,0,.28);color:#fff;
  font-family:var(--font);font-size:14.5px;transition:border-color .2s,box-shadow .2s;}
.iform input:focus,.iform select:focus,.iform textarea:focus{outline:none;
  border-color:var(--purple-accent);box-shadow:0 0 0 3px rgba(168,85,247,.16);}
.iform select option{background:#0D0628;color:#fff;}
.iform .full{grid-column:1/-1;}
.iform-note{font-size:12.5px;color:#6B7280;margin-top:16px;line-height:1.65;}
.iform-ok{text-align:center;padding:44px 24px;}
.iform-ok .tick{width:58px;height:58px;border-radius:50%;margin:0 auto 18px;display:grid;
  place-items:center;background:rgba(16,185,129,.14);border:1px solid rgba(16,185,129,.32);}
.iform-ok .tick svg{width:26px;height:26px;stroke:#34D399;fill:none;stroke-width:2.4;}
.iform-ok b{display:block;font-size:19px;color:#fff;}
.iform-ok p{color:var(--gray);font-size:14px;margin-top:10px;line-height:1.7;}
.iref{display:inline-block;margin-top:14px;font-family:ui-monospace,monospace;font-size:13px;
  color:#A855F7;background:rgba(168,85,247,.1);padding:6px 14px;border-radius:9px;}
.cap{padding:26px;border-radius:16px;border:1px solid var(--border);background:rgba(255,255,255,.03);
  transition:border-color .3s,transform .3s;}
.cap:hover{border-color:var(--border-strong);transform:translateY(-4px);}
.cap b{display:block;font-size:15px;color:#fff;font-weight:700;}
.cap p{font-size:13.5px;color:var(--gray);margin-top:9px;line-height:1.7;}
.cap-n{font-size:11px;font-weight:800;letter-spacing:.12em;color:#A855F7;text-transform:uppercase;}
@media(max-width:640px){.iform{padding:24px;}.iform-grid{grid-template-columns:1fr;}}
