:root{
  --navy:#0f2a3d;
  --navy-2:#153a54;
  --teal:#2f8f8a;
  --teal-dark:#256f6b;
  --sand:#f7f4ee;
  --ink:#1c2a33;
  --muted:#5b6b74;
  --line:#e4e2da;
  --white:#ffffff;
  --amber:#c98a2c;
  --amber-bg:#fbf1de;
  --cream:#f7ede0;
  --terracotta:#dd7827;
  --terracotta-dark:#be5c17;
  --mark-outline:#2b2118;
  --radius:14px;
  --shadow: 0 10px 30px rgba(15,42,61,0.08);
  --maxw:1120px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
h1,h2,h3,h4{
  font-family: Georgia, 'Times New Roman', serif;
  color:var(--navy);
  line-height:1.2;
  margin:0 0 0.5em 0;
}
a{color:var(--terracotta-dark);}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
img{max-width:100%; display:block;}

header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 0; gap:20px;}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; color:var(--navy); text-decoration:none; font-size:1.05rem; white-space:nowrap;}
.brand .mark{width:34px; height:34px; border-radius:9px; background:linear-gradient(135deg, var(--terracotta), var(--terracotta-dark)); display:flex; align-items:center; justify-content:center; color:white; font-family:Georgia,serif; font-weight:700; flex-shrink:0;}
.brand .mark svg{display:block;}
.nav-links{display:flex; gap:24px; align-items:center;}
.nav-links a{color:var(--navy); text-decoration:none; font-size:0.95rem; font-weight:500;}
.nav-links a:hover{color:var(--terracotta-dark);}
.role-switch{display:flex; background:var(--sand); border-radius:999px; padding:4px; gap:2px; border:1px solid var(--line);}
.role-switch a{padding:8px 16px; border-radius:999px; font-size:0.85rem; font-weight:600; text-decoration:none; color:var(--muted);}
.role-switch a.active{background:var(--navy); color:white;}

.btn{display:inline-block; padding:12px 22px; border-radius:999px; text-decoration:none; font-weight:600; font-size:0.95rem; transition:transform .15s ease, box-shadow .15s ease; border:none; cursor:pointer;}
.btn-primary{background:var(--terracotta); color:white;}
.btn-primary:hover{background:var(--terracotta-dark); transform:translateY(-1px);}
.btn-ghost{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
.btn-ghost:hover{background:var(--navy); color:white;}
.btn-sm{padding:9px 16px; font-size:0.85rem;}

.hero{
  background:radial-gradient(circle at 15% 20%, rgba(221,120,39,0.12), transparent 45%), linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
  padding:64px 0 56px; border-bottom:1px solid var(--line);
}
.eyebrow{display:inline-flex; align-items:center; gap:8px; background:rgba(221,120,39,0.12); color:var(--terracotta-dark); padding:6px 14px; border-radius:999px; font-size:0.8rem; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:18px;}
.hero h1{font-size:2.3rem; letter-spacing:-0.01em;}
.hero p.lead{color:var(--muted); font-size:1.08rem; max-width:58ch; margin:16px 0 24px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}

section{padding:64px 0;}
.section-head{max-width:680px; margin:0 auto 40px;}
.section-head.center{text-align:center;}
.section-head h2{font-size:1.9rem;}
.section-head p{color:var(--muted); font-size:1.03rem;}
.tag{display:inline-block; font-size:0.78rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--terracotta-dark); margin-bottom:10px;}

.draft-badge{
  display:inline-flex; align-items:center; gap:6px; background:var(--amber-bg); color:var(--amber);
  border:1px solid #eddcb8; padding:3px 10px; border-radius:999px; font-size:0.72rem; font-weight:700;
  letter-spacing:0.03em; text-transform:uppercase; margin-left:10px; vertical-align:middle;
}

.card{background:var(--sand); border-radius:var(--radius); padding:26px; border:1px solid var(--line);}
.card-white{background:white; border-radius:var(--radius); padding:26px; border:1px solid var(--line); box-shadow:var(--shadow);}

footer{border-top:1px solid var(--line); padding:36px 0; color:var(--muted); font-size:0.85rem;}
.footer-grid{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;}
.footer-links{display:flex; gap:20px;}
.footer-links a{color:var(--muted); text-decoration:none;}
.license-note{margin-top:16px; padding-top:16px; border-top:1px solid var(--line); font-size:0.78rem; color:var(--muted); display:flex; align-items:center; gap:8px; flex-wrap:wrap;}
.license-note img{height:16px; vertical-align:middle;}
.license-note a{color:var(--muted); text-decoration:underline;}

@media (max-width:860px){
  .nav-links{display:none;}
  .hero h1{font-size:1.9rem;}
}
