/* 2MAJ — minimal tech style (violet + jaune) */
:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: #EDEFF6;
  --muted: rgba(237,239,246,0.72);
  --border: rgba(255,255,255,0.12);
  --violet: #8B5CF6;
  --violet2:#A855F7;
  --yellow:#FDE047;
  --yellow2:#FBBF24;
  --good:#34D399;
  --bad:#FB7185;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(139,92,246,0.30), transparent 55%),
    radial-gradient(1100px 720px at 95% 10%, rgba(253,224,71,0.18), transparent 55%),
    radial-gradient(900px 600px at 50% 115%, rgba(168,85,247,0.12), transparent 60%),
    linear-gradient(180deg, #060913 0%, #070A12 100%);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; height:auto}
::selection{background: rgba(253,224,71,0.25)}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background:#111827;
  border:1px solid var(--border);
  border-radius:12px;
  z-index:9999;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,0.72);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:34px; width:auto}
.brand .tag{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:0.4px;
}

.menu{
  display:flex; align-items:center; gap:16px;
}
.menu a{
  font-weight:650;
  color: rgba(237,239,246,0.88);
  padding:10px 12px;
  border-radius:12px;
}
.menu a.active{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
}
.menu a:hover{
  background: rgba(255,255,255,0.05);
}

.cta{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  box-shadow: 0 10px 26px rgba(0,0,0,0.30);
}
.cta strong{font-weight:800}
.cta .dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--yellow), var(--violet));
  box-shadow: 0 0 0 6px rgba(253,224,71,0.08);
}

.burger{
  display:none;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius:14px;
  padding:10px 12px;
  color:var(--text);
}

.hero{
  padding:72px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:26px;
  align-items:stretch;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(237,239,246,0.86);
  font-weight:700;
  font-size:13px;
}
.kicker .chip{
  padding:4px 10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(253,224,71,0.18));
  border:1px solid rgba(255,255,255,0.10);
  font-weight:800;
}
h1{
  font-size: clamp(36px, 5vw, 58px);
  line-height:1.02;
  margin:16px 0 12px;
  letter-spacing:-1.4px;
}
.sub{
  color:var(--muted);
  font-size: clamp(16px, 2.2vw, 18px);
  line-height:1.6;
  margin: 0 0 18px;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top:18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:12px 16px;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, rgba(139,92,246,0.95), rgba(253,224,71,0.22));
  box-shadow: var(--shadow);
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost:hover{background: rgba(255,255,255,0.08)}

.card{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius2);
  box-shadow: 0 18px 60px rgba(0,0,0,0.36);
}
.hero-side{
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero-side::before{
  content:"";
  position:absolute; inset:-40px -60px auto auto;
  width:240px; height:240px;
  background: radial-gradient(circle at 30% 30%, rgba(253,224,71,0.22), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(139,92,246,0.22), transparent 62%);
  filter: blur(0px);
  opacity:0.9;
}
.stat{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.stat .box{
  padding:14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
}
.stat .n{
  font-size:22px; font-weight:900; letter-spacing:-0.6px;
}
.stat .l{
  color:var(--muted);
  font-weight:650;
  margin-top:6px;
  font-size:13px;
}
.badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.badge{
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  color: rgba(237,239,246,0.82);
  font-weight:700;
  font-size:13px;
}

.section{padding:44px 0}
.section h2{
  font-size: 26px;
  letter-spacing:-0.6px;
  margin:0 0 12px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.feature{
  padding:18px;
}
.icon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(253,224,71,0.18));
  border:1px solid rgba(255,255,255,0.12);
  margin-bottom:12px;
}
.feature h3{margin:0 0 8px; font-size:18px}
.feature p{margin:0; color:var(--muted); line-height:1.65}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.panel{
  padding:18px;
}
.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid; gap:10px;
}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  color: rgba(237,239,246,0.86);
}
.check{
  width:22px;height:22px;border-radius:8px;
  background: rgba(52,211,153,0.16);
  border:1px solid rgba(52,211,153,0.28);
  display:grid; place-items:center;
  flex:0 0 auto;
  margin-top:2px;
}

.footer{
  padding:28px 0 34px;
  border-top:1px solid rgba(255,255,255,0.08);
  color: rgba(237,239,246,0.72);
}
.footer-grid{
  display:flex; flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}
.footer a{color: rgba(237,239,246,0.78)}
.small{font-size:13px; line-height:1.6; color: rgba(237,239,246,0.66)}
hr.sep{
  border:0; height:1px;
  background: rgba(255,255,255,0.08);
  margin:22px 0;
}

.page-head{
  padding:44px 0 18px;
}
.page-head h1{margin:10px 0 10px}
.breadcrumb{
  color: rgba(237,239,246,0.68);
  font-weight:650;
  font-size:13px;
}
.breadcrumb a{color: rgba(237,239,246,0.80)}
.content{
  padding:18px;
}
.content p{color: var(--muted); line-height:1.75}
.content h2{margin-top:20px}
.content a{text-decoration:underline}

.form{
  display:grid;
  gap:12px;
  margin-top:10px;
}
.field{
  display:grid;
  gap:8px;
}
label{font-weight:750; color: rgba(237,239,246,0.90); font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus{
  border-color: rgba(253,224,71,0.36);
  box-shadow: 0 0 0 4px rgba(253,224,71,0.10);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.notice{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(237,239,246,0.80);
  font-weight:650;
  display:none;
}
.notice.ok{
  display:block;
  border-color: rgba(52,211,153,0.24);
  background: rgba(52,211,153,0.10);
}
.notice.err{
  display:block;
  border-color: rgba(251,113,133,0.24);
  background: rgba(251,113,133,0.10);
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .menu{display:none}
  .burger{display:inline-flex}
  .menu.open{
    display:flex;
    position:absolute;
    left:20px; right:20px;
    top:72px;
    flex-direction:column;
    padding:14px;
    border-radius: 18px;
    background: rgba(7,10,18,0.92);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
  }
  .form-row{grid-template-columns: 1fr}
}
