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

:root {
  --base: #150f08;
  --panel: rgba(20, 15, 10, 0.92);
  --accent: #f0d6b4;
  --accent-soft: #f8e8d2;
  --text: #f5fbff;
  --muted: rgba(245, 251, 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 15% 15%, rgba(240,214,180,0.3), transparent 60%), radial-gradient(circle at 80% 10%, rgba(248,232,210,0.2), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.7), 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; border:none; }
main { padding-top:120px; }

.brand { display:flex; gap:12px; align-items:center; }
.brand-mark { width:54px; height:54px; border-radius:20%; border:1px solid rgba(255,255,255,0.18); background:linear-gradient(135deg, rgba(240,214,180,0.5), rgba(9,14,18,0.7)); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.brand-mark img { width:100%; height:100%; object-fit:cover; border-radius:20%; }

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


.cta { background:linear-gradient(120deg, var(--accent), var(--accent-soft)); color:#36250f; border:none; border-radius:999px; padding:11px 26px; font-weight:600; text-decoration:none; box-shadow:0 20px 45px rgba(240,214,180,0.35); transition:transform 0.2s ease, box-shadow 0.2s ease; }
.cta:hover { transform:translateY(-3px); box-shadow:0 28px 55px rgba(240,214,180,0.4); }
.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:140px 40px 80px; text-align:center; position:relative; }
.hero-stage { position:absolute; inset:0; pointer-events:none; }
.atlas { position:absolute; width:420px; height:320px; left:50%; top:45%; transform:translate(-50%, -60%); border-radius:32px; border:1px solid rgba(255,255,255,0.08); background:linear-gradient(135deg, rgba(240,214,180,0.3), transparent); }
.loom { position:absolute; width:520px; height:240px; left:50%; top:52%; transform:translate(-50%, -20%); border-radius:999px; border:1px solid rgba(255,255,255,0.05); background:linear-gradient(90deg, rgba(248,232,210,0.15), transparent); }
.grid-outline { position:absolute; inset:12%; border:1px solid rgba(255,255,255,0.08); border-radius:38px; }
.hero-copy { max-width:100%; margin:0 auto; position:relative; }
.hero-copy h1 { font-size:clamp(2.5rem, 4vw, 3.8rem); 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; display:grid; grid-template-columns:repeat(auto-fit, minmax(160px,1fr)); gap:16px; }
.hero-stats article { padding:16px; border-radius:20px; border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.02); backdrop-filter:blur(8px); }
.hero-stats h3 { margin:0; font-size:1.4rem; }
.hero-stats p { margin:4px 0 0; color:var(--muted); font-size:0.9rem; }

.panel { width:min(1180px, 100% - 72px); margin:60px auto; padding:32px; border-radius:32px; background:var(--panel); border:1px solid rgba(255,255,255,0.08); box-shadow:0 35px 80px rgba(0,0,0,0.6); position:relative; overflow:hidden; transition:border-color 0.3s ease, box-shadow 0.3s ease; }
.panel:hover { border-color:rgba(255,255,255,0.14); box-shadow:0 45px 110px rgba(0,0,0,0.65); }
.panel::after { content:""; position:absolute; inset:1px; border-radius:32px; border:1px solid 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:26px; border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.02); backdrop-filter:blur(8px); position:relative; box-shadow:0 20px 45px rgba(0,0,0,0.35); transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform:translateY(-10px); border-color:rgba(255,255,255,0.25); box-shadow:0 35px 70px rgba(0,0,0,0.45); }
.card-icon { width:50px; height:50px; border-radius:16px; border:1px solid rgba(255,255,255,0.2); background:rgba(255,255,255,0.05); 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,251,255,0.65); }

/* icon variations */
.icon-loom::after { width:28px; height:28px; border-radius:50%; border:2px solid var(--accent); }
.icon-thread::after { width:4px; height:28px; background:var(--accent); box-shadow:0 -10px 0 rgba(255,255,255,0.4), 0 10px 0 rgba(255,255,255,0.2); }
.icon-band::after { width:34px; height:10px; border-radius:999px; background:linear-gradient(90deg, var(--accent), rgba(255,255,255,0.4)); }
.icon-collect::after { width:30px; height:30px; border-radius:10px; border:2px solid var(--accent-soft); }
.icon-confirm::after { width:26px; height:26px; border-radius:50%; border:2px solid var(--accent); }
.icon-relay::after { width:34px; height:2px; background:var(--accent); box-shadow:0 8px 0 rgba(255,255,255,0.3); }
.icon-atlas::after { width:26px; height:26px; border:2px solid var(--accent); transform:rotate(45deg); }
.icon-loom-core::after { width:32px; height:12px; border-radius:6px; background:linear-gradient(90deg, var(--accent), rgba(255,255,255,0.3)); }
.icon-beacon::after { width:20px; height:20px; border-radius:6px; border:2px solid rgba(255,255,255,0.4); }
.icon-auto::after { width:10px; height:32px; background:var(--accent); box-shadow:12px 0 0 rgba(255,255,255,0.4), -12px 0 0 rgba(255,255,255,0.2); }
.icon-compare::after { width:28px; height:18px; border-radius:8px; border:2px solid rgba(255,255,255,0.4); }
.icon-dm::after { width:28px; height:18px; border-radius:8px; border:2px solid var(--accent-soft); border-bottom-left-radius:2px; border-bottom-right-radius:2px; }
.icon-precision::after { width:24px; height:24px; border:2px solid var(--accent); }
.icon-clarity::after { width:28px; height:2px; background:rgba(255,255,255,0.6); box-shadow:0 -6px 0 rgba(255,255,255,0.4), 0 6px 0 rgba(255,255,255,0.3); }
.icon-calm::after { width:26px; height:10px; border-radius:999px; background:rgba(150,242,228,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; }
}

.line-card.loom-hero { background:linear-gradient(135deg, rgba(240,214,180,0.18), rgba(255,255,255,0.02)); }
.line-card.custody-thread { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(20,15,10,0.8)); }
.line-card.broadcast-band { background:linear-gradient(135deg, rgba(248,232,210,0.15), rgba(20,15,10,0.75)); }
.process-card.collect { background:linear-gradient(140deg, rgba(240,214,180,0.18), rgba(20,15,10,0.75)); }
.process-card.confirm { background:linear-gradient(140deg, rgba(255,255,255,0.08), rgba(20,15,10,0.75)); }
.process-card.relay { background:linear-gradient(140deg, rgba(248,232,210,0.15), rgba(20,15,10,0.7)); }
.core-card.atlas-core { background:linear-gradient(135deg, rgba(240,214,180,0.2), rgba(255,255,255,0.02)); }
.core-card.loom-core { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(20,15,10,0.8)); }
.core-card.beacon-core { background:linear-gradient(135deg, rgba(248,232,210,0.15), rgba(20,15,10,0.7)); }
.future-card.atlas-auto { background:linear-gradient(135deg, rgba(240,214,180,0.2), rgba(255,255,255,0.02)); }
.future-card.atlas-compare { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(20,15,10,0.75)); }
.future-card.atlas-dm { background:linear-gradient(135deg, rgba(248,232,210,0.15), rgba(20,15,10,0.75)); }
.concept-card.concept-precision { background:linear-gradient(135deg, rgba(240,214,180,0.18), rgba(255,255,255,0.02)); }
.concept-card.concept-clarity { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(20,15,10,0.75)); }
.concept-card.concept-calm { background:linear-gradient(135deg, rgba(248,232,210,0.15), rgba(20,15,10,0.7)); }
