@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600&display=swap");

:root {
  --base: #05060b;
  --panel: rgba(7, 8, 15, 0.95);
  --accent-red: #ef4c4c;
  --accent-blue: #2a4df7;
  --accent-white: #f6f7fb;
  --text: #f5f6ff;
  --muted: rgba(245, 246, 255, 0.75);
  font-family: "Sora", system-ui, sans-serif;
}

* { box-sizing:border-box; }
body { margin:0; min-height:100vh; background:var(--base); color:var(--text); overflow-x:hidden; }
.grid { position:fixed; inset:0; pointer-events:none; background:radial-gradient(circle at 20% 15%, rgba(42,77,247,0.25), transparent 60%), radial-gradient(circle at 80% 10%, rgba(239,76,76,0.22), transparent 60%), linear-gradient(180deg, rgba(0,0,0,0.65), transparent); }

header { position:fixed; top:0; left:0; right:0; z-index:10; display:flex; justify-content:space-between; align-items:center; padding:18px 48px; background:transparent; }
main { padding-top:120px; }

.brand { display:flex; gap:12px; align-items:center; }
.brand-mark { width:54px; height:54px; border-radius:16px; border:none; background:transparent; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.brand-mark img { width:100%; height:100%; object-fit:cover; border-radius:16px; }

nav { display:flex; gap:16px; flex-wrap:wrap; }
nav a { color:var(--muted); text-decoration:none; letter-spacing:0.08em; font-size:0.85rem; transition:color 0.2s ease; }
nav a:hover { color:var(--text); text-decoration:underline; }

.cta { background:linear-gradient(120deg, var(--accent-red), var(--accent-blue)); color:#05060b; border:none; border-radius:999px; padding:11px 26px; font-weight:600; text-decoration:none; box-shadow:0 20px 45px rgba(42,77,247,0.35); transition:transform 0.2s ease, box-shadow 0.2s ease; }
.cta:hover { transform:translateY(-3px); box-shadow:0 28px 55px rgba(42,77,247,0.45); }
.ghost { border:1px solid rgba(255,255,255,0.3); color:var(--text); border-radius:999px; padding:11px 24px; background:transparent; font-weight:600; transition:transform 0.2s ease, box-shadow 0.2s ease; }
.ghost:hover { transform:translateY(-3px); box-shadow:0 18px 30px rgba(255,255,255,0.2); }

.hero { min-height:100vh; display:flex; flex-direction:column; justify-content:flex-start; gap:32px; padding:70px 40px 80px; text-align:center; position:relative; }
.hero-stage { position:absolute; inset:0; pointer-events:none; }
.stripes { position:absolute; width:100%; height:60%; left:0; top:20%; background:linear-gradient(90deg, rgba(42,77,247,0.15) 0 20%, transparent 20% 40%, rgba(239,76,76,0.15) 40% 60%, transparent 60% 80%, rgba(255,255,255,0.08) 80% 100%); }
.badge { position:absolute; width:320px; height:320px; left:50%; top:45%; transform:translate(-50%, -50%); border-radius:32px; border:1px solid rgba(255,255,255,0.08); background:linear-gradient(135deg, rgba(255,255,255,0.12), transparent); }
.hero-copy { max-width:100%; margin:0 auto; position:relative; }
.hero-copy h1 { font-size:clamp(2.6rem, 4vw, 4rem); line-height:1.25; margin:16px 0; }
.hero-copy p { color:var(--muted); font-size:1.1rem; line-height:1.8; }
.hero-cta { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.hero-stats { margin-top:28px; }


.panel { width:min(1180px, 100% - 72px); margin:60px auto; padding:32px; border-radius:28px; background:var(--panel); border:1px solid rgba(255,255,255,0.08); box-shadow:0 35px 80px rgba(0,0,0,0.55); position:relative; overflow:hidden; transition:border-color 0.3s ease, box-shadow 0.3s ease; }
.panel:hover { border-color:rgba(255,255,255,0.15); box-shadow:0 45px 120px rgba(0,0,0,0.65); }
.panel::after { content:""; position:absolute; inset:1px; border-radius:28px; border:1px solid rgba(255,255,255,0.05); pointer-events:none; }
.panel::before { content:""; position:absolute; inset:6%; border-radius:22px; border:1px dashed rgba(255,255,255,0.05); pointer-events:none; }

.panel-head h2 { margin:0; font-size:2.1rem; }
.panel-head p { margin:6px 0 18px; color:var(--muted); }

.card-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:18px; }
.card { padding:20px; border-radius:20px; border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.02); position:relative; box-shadow:0 20px 45px rgba(0,0,0,0.4); transition:transform 0.3s ease, border-color 0.3s ease; }
.card:hover { transform:translateY(-10px); border-color:rgba(255,255,255,0.25); }
.card-icon { width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; margin-bottom:12px; position:relative; }
.card-icon::after { content:""; position:absolute; border-radius:999px; }
.note { margin-top:8px; font-size:0.85rem; color:rgba(245,246,255,0.65); }

/* card-specific backgrounds */
.vector-card { background:linear-gradient(135deg, rgba(42,77,247,0.15), rgba(255,255,255,0.02)); }
.custody-card { background:linear-gradient(135deg, rgba(239,76,76,0.15), rgba(255,255,255,0.02)); }
.broadcast-card { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(7,8,15,0.8)); }
.process-card.capture-card { background:linear-gradient(135deg, rgba(42,77,247,0.15), rgba(7,8,15,0.8)); }
.process-card.verify-card { background:linear-gradient(135deg, rgba(239,76,76,0.15), rgba(7,8,15,0.8)); }
.process-card.relay-card { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(7,8,15,0.8)); }
.core-card.badge-card { background:linear-gradient(135deg, rgba(42,77,247,0.12), rgba(255,255,255,0.02)); }
.core-card.loom-card { background:linear-gradient(135deg, rgba(239,76,76,0.12), rgba(255,255,255,0.02)); }
.core-card.beacon-card { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(7,8,15,0.8)); }
.future-card.auto-card { background:linear-gradient(135deg, rgba(42,77,247,0.15), rgba(255,255,255,0.02)); }
.future-card.compare-card { background:linear-gradient(135deg, rgba(239,76,76,0.15), rgba(255,255,255,0.02)); }
.future-card.dm-card { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(7,8,15,0.8)); }
.concept-card.concept-precision { background:linear-gradient(135deg, rgba(42,77,247,0.12), rgba(255,255,255,0.02)); }
.concept-card.concept-duty { background:linear-gradient(135deg, rgba(239,76,76,0.12), rgba(255,255,255,0.02)); }
.concept-card.concept-calm { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(7,8,15,0.8)); }

/* icons */
.icon-vector::after { width:28px; height:2px; background:var(--accent-blue); box-shadow:0 -6px 0 rgba(255,255,255,0.5), 0 6px 0 rgba(239,76,76,0.5); }
.icon-custody::after { width:4px; height:28px; background:var(--accent-red); box-shadow:0 0 0 6px rgba(255,255,255,0.15); }
.icon-broadcast::after { width:32px; height:18px; border-radius:10px; border:2px solid var(--accent-blue); }
.icon-capture::after { width:26px; height:26px; border-radius:8px; border:2px solid var(--accent-blue); }
.icon-verify::after { width:26px; height:26px; border-radius:50%; border:2px solid var(--accent-red); }
.icon-relay::after { width:30px; height:2px; background:var(--accent-white); box-shadow:0 8px 0 rgba(239,76,76,0.5); }
.icon-badge::after { width:24px; height:24px; border:2px solid var(--accent-white); border-radius:6px; }
.icon-loom::after { width:26px; height:26px; border-radius:50%; border:2px solid var(--accent-blue); }
.icon-beacon::after { width:20px; height:20px; border-radius:6px; border:2px solid var(--accent-red); }
.icon-auto::after { width:10px; height:32px; background:var(--accent-blue); box-shadow:12px 0 0 var(--accent-red), -12px 0 0 rgba(255,255,255,0.4); }
.icon-compare::after { width:28px; height:16px; border-radius:8px; border:2px solid var(--accent-white); }
.icon-dm::after { width:28px; height:18px; border-radius:8px; border:2px solid var(--accent-blue); }
.icon-precision::after { width:24px; height:24px; border:2px solid var(--accent-blue); }
.icon-duty::after { width:26px; height:10px; border-radius:999px; background:var(--accent-red); }
.icon-calm::after { width:26px; height:10px; border-radius:999px; background:rgba(255,255,255,0.4); }

.connect { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.connect p { color:var(--muted); }

@media (max-width:768px) {
  header { flex-direction:column; gap:12px; padding:18px 24px; }
  nav { justify-content:center; }
  .hero { padding:140px 24px 60px; }
  .panel { width:calc(100% - 32px); margin:40px auto; }
  .connect { flex-direction:column; align-items:flex-start; }
}

.pill-stats { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }
.pill-stats article { display:flex; align-items:center; gap:12px; padding:10px 20px; border-radius:999px; border:1px solid rgba(255,255,255,0.2); background:rgba(0,0,0,0.25); box-shadow:0 10px 30px rgba(0,0,0,0.35); }
.stat-value { font-size:1.2rem; font-weight:600; }
.stat-text { font-size:0.9rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.2em; }
