/* Project Eclipse1 — minimal, clean, responsive */

:root{
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --brand: #0b1220;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1080px, calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand-name{ font-size: 16px; }

.nav{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--muted);
}

.hero{
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--line);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items:start;
}

h1{
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}

.badge-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.badge{
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}

.fineprint{
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  border-left: 3px solid var(--line);
  padding-left: 12px;
}

.hero-card{
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow);
}

.card-title{
  margin: 0 0 10px;
  font-size: 16px;
}

.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section{
  padding: 54px 0;
}

.section.alt{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2{
  font-size: 28px;
  margin: 0 0 10px;
}

.muted{ color: var(--muted); }

.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.card p{ margin: 0; color: var(--muted); }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.steps{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.callout{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.callout h3{ margin: 0 0 6px; }
.bullets{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }

.grid-3{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tile{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tile h3{ margin: 0 0 6px; font-size: 16px; }
.tile p{ margin: 0; color: var(--muted); }

.notice{
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.faq{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  box-shadow: var(--shadow);
  margin-top: 10px;
}

.faq summary{
  cursor: pointer;
  font-weight: 800;
}

.faq p{ color: var(--muted); margin: 10px 0 0; }

.site-footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-brand{ font-weight: 900; color: var(--ink); }
.footer-muted{ color: var(--muted); font-size: 13px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .nav{ gap: 12px; }
}
