
:root{
  --cream:#fff4ef;
  --paper:#fffaf7;
  --red:#D51712;
  --red2:#B8120F;
  --dark:#180708;
  --text:#2b1515;
  --muted:#755858;
  --line:rgba(213,23,18,.16);
  --soft:rgba(213,23,18,.07);
  --gold:#c99a4d;
  --shadow:0 18px 55px rgba(125,5,7,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 10% 4%, rgba(213,23,18,.14), transparent 22rem),
    radial-gradient(circle at 95% 30%, rgba(201,154,77,.14), transparent 20rem),
    var(--cream);
  color:var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.site{
  width:100%;
  max-width:460px;
  min-height:100vh;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(255,250,247,.82), rgba(255,244,239,.94));
  border-left:1px solid rgba(125,5,7,.06);
  border-right:1px solid rgba(125,5,7,.06);
  position:relative;
  overflow:hidden;
}
.header{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:12px 16px;
  background:rgba(255,244,239,.90);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(213,23,18,.10);
}
.brand{display:flex;align-items:center;gap:9px;font-weight:950;letter-spacing:-.3px;color:var(--dark)}
.brand img{width:42px;height:42px;object-fit:contain;filter:drop-shadow(0 10px 14px rgba(125,5,7,.18))}
.nav{display:flex;align-items:center;gap:7px}
.nav a{
  font-size:12px;font-weight:850;
  border:1px solid var(--line);background:rgba(255,255,255,.74);
  border-radius:999px;padding:8px 10px;color:var(--dark)
}
.nav .hot{background:var(--red);color:#fff;border-color:var(--red);box-shadow:0 10px 24px rgba(213,23,18,.22)}
.section{padding:34px 20px}
.hero{min-height:82vh;display:flex;flex-direction:column;justify-content:center;padding:34px 20px 38px}
.hero-logo{width:230px;margin:0 auto 26px;filter:drop-shadow(0 20px 28px rgba(125,5,7,.20))}
.eyebrow{
  display:inline-flex;width:max-content;max-width:100%;
  border:1px solid var(--line);background:rgba(255,255,255,.62);
  border-radius:999px;color:var(--red);font-size:12px;font-weight:950;
  padding:8px 12px;letter-spacing:.4px;text-transform:uppercase
}
h1,h2,h3{margin:0;color:var(--dark)}
h1{font-size:44px;line-height:1.00;letter-spacing:-2px;margin:18px 0 14px}
h2{font-size:32px;line-height:1.04;letter-spacing:-1px;margin:12px 0}
h3{font-size:20px;line-height:1.14;margin-bottom:8px}
p{font-size:16px;line-height:1.55;color:var(--muted);margin:0 0 15px}
.lead{font-size:18px;color:#3b2020}
.red{color:var(--red)}
.card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  margin:14px 0;
  box-shadow:var(--shadow);
}
.card.soft{background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,244,239,.72))}
.card.redcard{background:linear-gradient(135deg,var(--red),var(--red2));color:#fff;border:0}
.card.redcard h2,.card.redcard h3,.card.redcard p{color:#fff}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:16px 0}
.pill{
  border:1px solid var(--line);background:rgba(255,255,255,.68);
  border-radius:18px;padding:13px;font-size:14px;font-weight:900;color:var(--dark)
}
.icon{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;
  background:linear-gradient(180deg,var(--red),var(--red2));color:#fff;font-size:22px;font-weight:950;
  box-shadow:0 12px 26px rgba(213,23,18,.20)
}
.btns{display:grid;gap:10px;margin-top:16px}
.btn{
  min-height:52px;display:flex;align-items:center;justify-content:center;text-align:center;
  border-radius:16px;padding:15px 18px;font-weight:950;border:1px solid var(--line)
}
.btn.primary{background:var(--red);color:#fff;border-color:var(--red);box-shadow:0 16px 34px rgba(213,23,18,.26)}
.btn.secondary{background:rgba(255,255,255,.78);color:var(--dark)}
.quote{
  font-size:28px;line-height:1.08;font-weight:950;letter-spacing:-1px;color:var(--red);
  background:#fff;border:1px solid var(--line);border-radius:26px;padding:24px;text-align:center;
  box-shadow:var(--shadow)
}
.list{display:grid;gap:10px;margin-top:12px}
.li{display:flex;gap:10px;align-items:flex-start;color:#442525;font-size:15px;line-height:1.45}
.li:before{content:"";width:9px;height:9px;margin-top:7px;border-radius:50%;background:var(--red);box-shadow:0 0 0 5px rgba(213,23,18,.10);flex:0 0 auto}
.big{
  font-size:54px;line-height:.95;font-weight:1000;letter-spacing:-2px;color:var(--red);
  text-shadow:0 15px 35px rgba(213,23,18,.20);margin-bottom:8px
}
.stats{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:14px 0}
.stat{background:rgba(255,255,255,.72);border:1px solid var(--line);border-radius:18px;padding:15px}
.stat strong{display:block;font-size:24px;color:var(--dark)}
.stat span{font-size:12px;color:var(--muted)}
.progress{height:14px;border-radius:999px;overflow:hidden;border:1px solid var(--line);background:#fff;margin:12px 0}
.progress div{height:100%;width:20%;background:linear-gradient(90deg,var(--red),#ff6a58)}
.small{font-size:13px;color:#876666}
.form{
  display:grid;gap:10px;margin-top:14px
}
input,select,textarea,button{
  width:100%;border:1px solid var(--line);border-radius:15px;background:rgba(255,255,255,.86);
  padding:15px 14px;font:inherit;color:var(--dark)
}
textarea{min-height:116px;resize:vertical}
button{background:var(--red);color:#fff;font-weight:950;cursor:pointer;box-shadow:0 16px 30px rgba(213,23,18,.22)}
.page-title{padding:34px 20px 18px}
.footer{padding:30px 20px 48px;text-align:center;border-top:1px solid var(--line);font-size:13px;color:#8b6969}
.footer p{font-size:13px}
.footer-links{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-top:10px}
.footer-links a{color:var(--red);font-weight:900}
.example{
  background:linear-gradient(180deg,#fff,#fff7f2);
  border:1px solid var(--line);border-radius:24px;padding:18px;margin:14px 0
}
.tokenrow{display:flex;justify-content:space-between;border-bottom:1px solid rgba(213,23,18,.12);padding:10px 0;color:#442525}
.tokenrow:last-child{border-bottom:0}
.badge{display:inline-flex;align-items:center;gap:6px;background:var(--soft);color:var(--red);border:1px solid var(--line);border-radius:999px;padding:7px 10px;font-size:12px;font-weight:950}
.qr{width:76px;margin:22px auto 0}
@media(min-width:760px){
  .site{max-width:520px}
  h1{font-size:52px}
}

.previous-version-link{
  margin:26px auto 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#8b6969;
  font-size:12px;
  text-decoration:underline;
  opacity:.78;
}
.funding-flow{
  display:grid;
  gap:10px;
  margin:16px 0;
}
.flow-step{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:18px;
  padding:15px;
}
.flow-step strong{
  color:var(--red);
  display:block;
  font-size:15px;
  margin-bottom:4px;
}


/* Maria Amore intro-scherm, gelijk aan de Amsterdam Lawyers-opzet */
#intro{
  position:fixed;
  inset:0;
  z-index:9999;
  background:
    radial-gradient(circle at 50% 12%, rgba(213,23,18,.14), transparent 20rem),
    linear-gradient(180deg, var(--cream), var(--paper));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  opacity:1;
  transition:opacity .6s ease;
}
#intro.weg{opacity:0;pointer-events:none}
.intro-logo{
  width:min(58vw,250px);
  height:auto;
  filter:drop-shadow(0 20px 28px rgba(125,5,7,.20));
}
.intro-ma{
  margin-top:clamp(14px,2.6vh,24px);
  font-size:clamp(38px,10.5vw,56px);
  line-height:.98;
  font-weight:950;
  letter-spacing:-.055em;
  color:var(--red);
}


/* Definitieve mobiele header Maria Amore */
.header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  gap:10px;
  padding:10px 14px 12px;
  background:rgba(255,244,239,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(213,23,18,.10);
}
.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  min-width:0;
  font-weight:950;
  letter-spacing:-.3px;
  color:var(--dark);
}
.brand img{
  width:38px;
  height:38px;
  object-fit:contain;
  flex:0 0 auto;
  filter:drop-shadow(0 8px 12px rgba(125,5,7,.18));
}
.brand span{
  display:inline;
  white-space:nowrap;
  line-height:1;
  font-size:22px;
}
.nav{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding-bottom:2px;
}
.nav::-webkit-scrollbar{display:none}
.nav a{
  flex:0 0 auto;
  font-size:13px;
  font-weight:900;
  line-height:1;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  border-radius:999px;
  padding:12px 15px;
  color:var(--dark);
  white-space:nowrap;
}
.nav .hot{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
  box-shadow:0 10px 24px rgba(213,23,18,.22);
}
@media(min-width:760px){
  .header{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 20px;
  }
  .brand img{width:42px;height:42px}
  .nav{
    width:auto;
    max-width:100%;
    justify-content:flex-end;
  }
}


/* Definitieve header-fix: geen overlap op PC of mobiel */
.header{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  justify-content:flex-start !important;
  gap:10px !important;
  padding:12px 16px 13px !important;
}
.brand{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;
  width:100% !important;
  min-width:0 !important;
}
.brand img{
  width:38px !important;
  height:38px !important;
  flex:0 0 auto !important;
}
.brand span{
  font-size:24px !important;
  line-height:1 !important;
  white-space:nowrap !important;
}
.nav{
  width:100% !important;
  max-width:100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  -webkit-overflow-scrolling:touch !important;
  scrollbar-width:none !important;
  padding-bottom:2px !important;
}
.nav::-webkit-scrollbar{display:none !important}
.nav a{
  flex:0 0 auto !important;
  white-space:nowrap !important;
  font-size:13px !important;
  padding:12px 15px !important;
}
@media(min-width:760px){
  .header{
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    padding:14px 28px 15px !important;
  }
  .brand img{
    width:42px !important;
    height:42px !important;
  }
  .brand span{
    font-size:26px !important;
  }
  .nav{
    width:100% !important;
    justify-content:flex-start !important;
  }
  .nav a{
    font-size:14px !important;
    padding:13px 18px !important;
  }
}


/* Definitieve responsive header: geen onderdelen buiten scherm */
.header{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  gap:10px !important;
  padding:10px 12px 12px !important;
  overflow:hidden !important;
}
.brand{
  width:100% !important;
  display:flex !important;
  align-items:center !important;
  gap:9px !important;
  min-width:0 !important;
}
.brand img{
  width:36px !important;
  height:36px !important;
  flex:0 0 auto !important;
}
.brand span{
  font-size:21px !important;
  line-height:1 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
.nav{
  width:100% !important;
  max-width:100% !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:8px !important;
  overflow:visible !important;
  padding:0 !important;
}
.nav a{
  min-width:0 !important;
  width:100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  white-space:normal !important;
  line-height:1.05 !important;
  font-size:13px !important;
  padding:11px 8px !important;
  border-radius:999px !important;
}
@media(min-width:520px){
  .nav{
    grid-template-columns:repeat(4, 1fr) !important;
  }
  .nav a{
    white-space:nowrap !important;
    font-size:13px !important;
    padding:12px 10px !important;
  }
}
@media(min-width:760px){
  .header{
    padding:14px 28px 15px !important;
  }
  .brand img{
    width:42px !important;
    height:42px !important;
  }
  .brand span{
    font-size:26px !important;
  }
  .nav{
    grid-template-columns:repeat(4, 1fr) !important;
  }
  .nav a{
    font-size:14px !important;
    padding:13px 12px !important;
  }
}


/* Desktop 2x2 menu layout */
@media (min-width: 760px){
  .nav{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(180px,1fr)) !important;
    gap:12px !important;
    max-width:760px !important;
    margin:0 auto !important;
  }
  .nav a{
    width:100% !important;
    justify-content:center !important;
  }
}


/* Verborgen investeerdersdemo / customer journey */
.journey-hero{
  padding:34px 20px 28px;
}
.journey-label{
  display:inline-flex;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  border-radius:999px;
  color:var(--red);
  font-size:12px;
  font-weight:950;
  padding:8px 12px;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.journey-flow{
  padding:10px 20px 40px;
}
.journey-step{
  position:relative;
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  border-radius:26px;
  padding:20px;
  margin:18px 0 28px;
  box-shadow:var(--shadow);
}
.journey-step:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-28px;
  width:2px;
  height:28px;
  background:linear-gradient(var(--red), transparent);
}
.journey-step:last-child:after{display:none}
.step-number{
  width:42px;
  height:42px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--red);
  color:#fff;
  font-weight:950;
  margin-bottom:12px;
  box-shadow:0 12px 26px rgba(213,23,18,.20);
}
.mock-phone{
  border:1px solid rgba(213,23,18,.18);
  background:linear-gradient(180deg,#fff,#fff7f2);
  border-radius:28px;
  padding:14px;
  margin:14px 0;
}
.mock-screen{
  background:rgba(255,244,239,.78);
  border:1px solid rgba(213,23,18,.12);
  border-radius:22px;
  padding:16px;
}
.dashboard-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:12px 0;
}
.dashboard-tile{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.dashboard-tile strong{
  display:block;
  color:var(--dark);
  font-size:20px;
}
.dashboard-tile span{
  color:var(--muted);
  font-size:12px;
}
.chain-line{
  display:grid;
  gap:8px;
  margin-top:12px;
}
.chain-item{
  background:rgba(213,23,18,.07);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  color:#442525;
  font-size:14px;
}
.contract-list{
  display:grid;
  gap:10px;
}
.contract-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
}
.contract-card h4{
  margin:0 0 6px;
  color:var(--red);
}
.value-bar{
  height:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
  margin:8px 0 12px;
}
.value-bar div{
  height:100%;
  background:linear-gradient(90deg,var(--red),#ff7968);
}
.investor-note{
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  border-radius:26px;
  padding:22px;
  box-shadow:0 18px 55px rgba(125,5,7,.20);
}
.investor-note h2,.investor-note p{color:#fff}
.journey-cta{
  display:grid;
  gap:10px;
  margin-top:16px;
}
@media(min-width:760px){
  .journey-flow{max-width:760px;margin:0 auto}
}
