:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#fbfbff;
  --ink:#0b0b10;
  --muted:#5b6472;
  --border:rgba(10,10,10,.10);

  --violet:#5e17eb;
  --violet-2:#7c3aed;
  --violet-soft:rgba(94,23,235,.10);

  --radius:18px;
  --radius-lg:26px;
  --shadow: 0 18px 50px rgba(10,10,10,.08);
  --shadow-soft: 0 10px 24px rgba(10,10,10,.06);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* CONTENT WRAP */
.wrap{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 18px 84px;
}

/* NAV (full-width, sticky) */
.nav{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 160px;
}
.brand img{
  height: 36px;
  width: auto;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  color: var(--muted);
  font-weight:700;
  font-size:14px;
}
.nav-links a:hover{color:var(--ink)}
.nav-links a.active{color:var(--violet)}
.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: transparent;
  color:#fff;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  box-shadow: 0 16px 40px rgba(94,23,235,.20);
}
.btn.ghost{
  background: transparent;
  box-shadow:none;
}

/* HERO */
.hero{
  margin-top: 18px;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(94,23,235,.14), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(124,58,237,.10), transparent 60%),
    linear-gradient(180deg, var(--surface-2), #fff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  color: var(--violet);
  background: var(--violet-soft);
  border: 1px solid rgba(94,23,235,.18);
}
.hero h1{
  margin: 14px 0 10px;
  letter-spacing:-.04em;
  line-height: 1.04;
  font-size: clamp(34px, 4.6vw, 56px);
}
.sub{
  margin:0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.ctaRow{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* SECTION HEADERS */
.section{
  margin-top: 26px;
}
.section h2{
  margin: 0 0 6px;
  letter-spacing:-.03em;
  font-size: 22px;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height: 1.65;
}

/* GRID */
.grid{
  margin-top: 14px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(12, 1fr);
}

/* CARDS */
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  transition: transform .12s ease;
}
.card:hover{transform: translateY(-2px)}

.half{ grid-column: span 6; }
.full{ grid-column: span 12; }

/* Pills / tags */
.tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color: var(--violet);
  background: var(--violet-soft);
  border: 1px solid rgba(94,23,235,.18);
}

.card h3{
  margin:10px 0 8px;
  letter-spacing:-.02em;
  font-size: 18px;
}
.muted{
  color: var(--muted);
  line-height: 1.65;
}
.card ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.card li{ margin: 6px 0; }

/* Article metadata + links */
.meta{
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.read-more{
  display:inline-flex;
  margin-top: 12px;
  font-weight:900;
  color: var(--violet);
}
.read-more:hover{text-decoration: underline}

/* Email display */
.email{
  font-weight:900;
  color: var(--ink);
}

/* FOOTER */
.footer{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* RESPONSIVE */
@media (max-width: 860px){
  .hero{padding: 30px 18px;}
  .nav-links{display:none;}
  .half{grid-column: span 12;}
}

/* Founder page helpers */
.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;
  border:1px solid var(--border);
  background: var(--violet);
  color:#fff;
  box-shadow: var(--shadow);
}
.btn.ghost{background:transparent;color:var(--ink);box-shadow:none}
.btn:hover{transform: translateY(-1px)}

.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top:14px;
}
@media (min-width: 860px){
  .grid-2{grid-template-columns: 1fr 1fr}
}

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 8px 0;font-size:18px}
.muted{color: var(--muted)}
.bullets{margin:10px 0 0 18px}
.bullets li{margin:8px 0}

.pill-row{display:flex;gap:8px;flex-wrap:wrap}
.pill{
  border: 1px solid var(--border);
  background: var(--violet-soft);
  padding:6px 10px;
  border-radius:999px;
  font-size: 13px;
}

.note{
  margin-top:12px;
  padding:12px;
  border-radius: 14px;
  border: 1px dashed var(--border);
  background: rgba(94,23,235,.06);
}
.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}