:root{
  --bg:#0b0c10; /* Deep Executive Black */
  --fg:#e5e7eb; /* Soft White */
  --muted:#9ca3af; /* Muted Grey */
  --hair:#2d3748; /* Borders */
  --accent:#1f2937; /* Card Backgrounds */
  --highlight:#c5a059; /* Gold/Bronze for Authority */
  --max: 1000px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height:1.7;
  letter-spacing:0.3px;
}

a{color:var(--fg); text-decoration:none; border-bottom:1px solid var(--hair); transition: all 0.2s ease;}
a:hover{border-bottom-color:var(--highlight); color:var(--highlight);}

.wrap{max-width:var(--max); margin:0 auto; padding:60px 24px}
.muted{color:var(--muted)}

/* HEADER */
header{
  display:flex; justify-content:space-between; align-items:center;
  padding-bottom:24px; border-bottom:1px solid var(--hair); margin-bottom: 60px;
}
.brand{font-size:18px; font-weight:700; letter-spacing:1px; text-transform:uppercase;}
.brand .cn{font-weight:400; color:var(--muted); margin-left:8px; font-size:16px;}

nav{display:flex; gap:24px;}
nav a{color:var(--muted); text-transform:uppercase; font-size:12px; letter-spacing:1px; border:none;}
nav a:hover, nav a.active{color:var(--fg); font-weight: 600;}

/* TYPOGRAPHY */
h1{font-size:48px; line-height:1.1; margin:0 0 24px; font-weight:700; letter-spacing:-1px;}
.lede{font-size:22px; color:var(--muted); max-width:800px; margin:0 0 60px; font-weight:300; line-height:1.5;}

h2{font-size:12px; text-transform:uppercase; letter-spacing:2px; color:var(--highlight); margin:0 0 20px; font-weight:600;}
h3{font-size:18px; font-weight:600; margin:0 0 8px; color:var(--fg);}

/* GRIDS & CARDS */
.grid{display:grid; grid-template-columns:1fr; gap:60px;}
@media (min-width: 800px){ .grid{grid-template-columns: 2fr 1fr;} }

.card{border-top:1px solid var(--hair); padding-top:24px; margin-bottom:40px;}

/* DEAL LISTS (Track Record) */
.deal-list { display: flex; flex-direction: column; gap: 32px; }
.deal-item { 
  border-left: 2px solid var(--hair); 
  padding-left: 24px; 
}
.deal-meta { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }

/* UTILS */
.pills{display:flex; flex-wrap:wrap; gap:12px;}
.pill{border:1px solid var(--hair); color:var(--muted); padding:4px 12px; font-size:12px; border-radius:100px;}

.notice{
  background:var(--accent); padding:24px; border-radius:4px; 
  border-left: 3px solid var(--highlight);
  font-size:15px; color:var(--muted); margin-top: 20px;
}

/* FOOTER */
.footer{
  margin-top:80px; padding-top:24px; border-top:1px solid var(--hair); 
  color:var(--muted); font-size:13px; display:flex; justify-content:space-between;
}