/* Funemployment Agency — curated, institutional, monastic.
   Black matte / ink. Text-first. Gate-forward. */

:root{
  --bg:#0b0b0c;
  --panel:#101114;
  --ink:#f3f1ea;
  --muted:rgba(243,241,234,.72);
  --line:rgba(243,241,234,.16);
  --accent:rgba(200,178,122,.9);
  --accent2:rgba(200,178,122,.22);
  --shadow:0 14px 40px rgba(0,0,0,.5);
  --radius:14px;

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--serif);
  letter-spacing:.2px;
  line-height:1.45;
}

a{ color:var(--ink); text-decoration:none; }
a:hover{ text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:4px; }

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

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(11,11,12,.84);
  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;
  min-width:260px;
}

.seal{
  width:44px;
  height:44px;
  color:var(--accent);
  flex:0 0 auto;
}
.seal svg{ width:100%; height:100%; display:block; }

.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-name{
  font-size:16px;
  letter-spacing:.6px;
}
.brand-sub{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
  font-family:var(--sans);
  font-size:13px;
  color:var(--muted);
}
.nav a{ color:var(--muted); }
.nav a:hover{ color:var(--ink); text-decoration:none; }

.nav-cta{
  padding:8px 12px;
  border:1px solid var(--accent2);
  border-radius:999px;
  color:var(--ink) !important;
  background:rgba(200,178,122,.08);
}
.nav-cta:hover{ background:rgba(200,178,122,.14); }

.hero{
  padding:54px 0 28px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(200,178,122,.08), transparent 60%),
    radial-gradient(700px 220px at 80% 10%, rgba(243,241,234,.06), transparent 60%);
}

.kicker{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:16px;
}

h1{
  font-weight:500;
  font-size:44px;
  line-height:1.1;
  margin:0 0 14px;
}

.lede{
  margin:0 0 22px;
  max-width:720px;
  color:var(--muted);
  font-size:18px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 14px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(243,241,234,.22);
  background:rgba(243,241,234,.08);
  font-family:var(--sans);
  font-size:13px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--ink);
  box-shadow: var(--shadow);
  cursor:pointer;
}
.button:hover{
  background:rgba(243,241,234,.12);
  text-decoration:none;
}
.button.ghost{
  background:transparent;
  box-shadow:none;
  border:1px solid var(--line);
  color:var(--muted);
}
.button.ghost:hover{
  color:var(--ink);
  background:rgba(243,241,234,.06);
}

.fineprint{
  font-family:var(--sans);
  font-size:12px;
  color:rgba(243,241,234,.58);
  max-width:760px;
}

.section{ padding:44px 0; }

h2{
  font-size:22px;
  font-weight:500;
  margin:0 0 18px;
}

h3{
  font-size:16px;
  font-weight:500;
  margin:0 0 12px;
}

.body{
  margin:0 0 18px;
  color:var(--muted);
  max-width:820px;
  font-size:16px;
}

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

.card{
  background:linear-gradient(180deg, rgba(16,17,20,.88), rgba(16,17,20,.72));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.card-title{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:1.1px;
  text-transform:uppercase;
  color:rgba(243,241,234,.78);
  margin-bottom:10px;
}
.card-body{ color:var(--muted); font-size:15px; }

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:18px;
}

.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:8px 0; }
.bullets.tight li{ margin:6px 0; }

.note{
  margin-top:12px;
  padding:12px 14px;
  border-left:2px solid var(--accent);
  background:rgba(200,178,122,.06);
  color:rgba(243,241,234,.74);
  font-family:var(--sans);
  font-size:12px;
  line-height:1.5;
}

.disclaimer{
  margin-top:16px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  color:rgba(243,241,234,.62);
  font-family:var(--sans);
  font-size:12px;
}

.gate-box{
  border:1px solid rgba(200,178,122,.28);
  background:rgba(200,178,122,.06);
  border-radius:var(--radius);
  padding:18px;
}
.gate-title{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:1.1px;
  text-transform:uppercase;
  color:rgba(243,241,234,.88);
  margin:6px 0 10px;
}

.apply-actions{ margin-top:14px; }

.faq{
  margin-top:26px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
details{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  margin:10px 0;
  background:rgba(16,17,20,.55);
}
summary{
  cursor:pointer;
  font-family:var(--sans);
  font-size:13px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:rgba(243,241,234,.82);
}
.details-body{ margin-top:10px; color:var(--muted); font-size:15px; }

.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:rgba(243,241,234,.55);
  font-family:var(--sans);
  font-size:12px;
}
.footer a{ color:rgba(243,241,234,.72); }

@media (max-width: 880px){
  h1{ font-size:36px; }
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .nav{ display:none; }
}
