/* ================================
   FONTS
================================ */
@font-face{
  font-family:"AGADA";
  src:url("/fonts/agada.woff2") format("woff2");
  font-weight:400 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Neue Einstellung";
  src:url("/fonts/neue-einstellung.woff2") format("woff2");
  font-weight:300 900;
  font-style:normal;
  font-display:swap;
}

/* ================================
   DESIGN TOKENS
================================ */
:root{
  --ink:#0b1220;
  --muted:#4b5563;
  --bg:#fbfaf7;
  --card:#ffffff;
  --line:rgba(12,37,4,.14);
  --accent:#0C2504;
  --accent2:rgba(12,37,4,.10);
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --radius:18px;
  --max:1120px;
  --pad:18px;

  --font-brand:"AGADA", ui-serif, Georgia, serif;
  --font-head:"Neue Einstellung", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  --font-body:system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

/* ================================
   BASE
================================ */
*{box-sizing:border-box}
html,body{margin:0;padding:0}

/* Prevent layout shift when switching pages (scrollbar appears/disappears) */
html{scrollbar-gutter:stable}
@supports not (scrollbar-gutter: stable){
  body{overflow-y:scroll}
}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(12,37,4,.08), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(12,37,4,.06), transparent 55%),
    var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

/* ================================
   HEADER / NAV
================================ */
.header{
  position:sticky;top:0;z-index:10;
  backdrop-filter:saturate(1.4) blur(10px);
  background:rgba(251,250,247,.72);
  border-bottom:1px solid rgba(12,37,4,.12);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
}

/* If a page uses <span class="brandMark"></span>, render your logo consistently */
.brandMark{
  width:56px;
  height:56px;
  border-radius:12px;
  background:url("/logo.png") center/contain no-repeat;
  display:inline-block;
  flex:0 0 auto;
}

.brandLogo{
  height:56px;
  width:auto;
  display:block;
  border-radius:12px;
}

.brandName{
  font-family:var(--font-brand);
  font-size:22px;
  font-weight:900;
  letter-spacing:.25px;
  line-height:1.05;
}

@media (max-width:900px){
  .brandMark{width:46px;height:46px}
  .brandLogo{height:46px}
  .brandName{font-size:19px}
}

.links{display:flex;gap:18px;align-items:center}
.links a{
  font-weight:700;
  color:rgba(11,18,32,.86);
}
.links a.active{color:var(--accent)}
.links a:not(.btn){
  padding:8px 6px;
  border-radius:10px;
}
.links a:not(.btn):hover{background:rgba(12,37,4,.06)}

/* ================================
   BUTTONS
================================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--accent);
  color:#fff !important;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid rgba(12,37,4,.25);
  box-shadow:0 10px 22px rgba(12,37,4,.22);
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btnSmall{padding:10px 14px;font-weight:850}
.btnGhost{
  background:transparent;
  color:var(--accent) !important;
  border:1px solid rgba(12,37,4,.28);
  box-shadow:none;
}
.btnGhost:hover{background:rgba(12,37,4,.06)}

main{padding-bottom:70px}

/* ================================
   TYPOGRAPHY
================================ */
h1,h2,h3{
  font-family:var(--font-head);
}
h1{
  font-size:44px;
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
@media (max-width:900px){h1{font-size:38px}}

.lead{
  font-size:18px;
  color:rgba(11,18,32,.78);
  max-width:58ch;
}

/* ================================
   HERO
================================ */
.hero{padding:44px 0 18px}
.heroGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width:900px){
  .heroGrid{grid-template-columns:1fr}
  .links{gap:12px}
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0;
}

.trustGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
@media (max-width:900px){.trustGrid{grid-template-columns:1fr}}

.card{
  background:var(--card);
  border:1px solid rgba(12,37,4,.12);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 6px 16px rgba(2,6,23,.05);
}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0;color:rgba(11,18,32,.72);font-size:14px}

.heroPanel{
  background:
    linear-gradient(180deg, rgba(12,37,4,.10), transparent 55%),
    #fff;
  border:1px solid rgba(12,37,4,.12);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:12px;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(12,37,4,.18);
  background:rgba(12,37,4,.06);
  font-weight:750;
  font-size:13px;
}

/* ================================
   SECTIONS
================================ */
.section{padding:22px 0}
.sectionTitle{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:12px;
}
.sectionTitle h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.3px;
}
.sectionTitle p{
  margin:0;
  color:rgba(11,18,32,.70);
  max-width:70ch;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width:900px){.split{grid-template-columns:1fr}}

.bigCard{padding:18px}
.bigCard h3{font-size:18px;margin:0 0 8px}
.bigCard ul{margin:10px 0 0 18px}
.bigCard li{margin:6px 0}

.callout{
  background:linear-gradient(180deg, rgba(12,37,4,.10), rgba(12,37,4,.04));
  border:1px solid rgba(12,37,4,.14);
  border-radius:var(--radius);
  padding:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
@media (max-width:900px){
  .callout{flex-direction:column;align-items:flex-start}
}

/* ================================
   FOOTER
================================ */
.footer{
  border-top:1px solid rgba(12,37,4,.12);
  padding:18px 0;
  color:rgba(11,18,32,.70);
}
.footerGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
  align-items:center;
}
@media (max-width:900px){.footerGrid{grid-template-columns:1fr}}
.small{font-size:13px}
.footer a{font-weight:800}
