
:root{
  --gryphon-navy:#0a0f1f;
  --gryphon-gold:#d4af37;
  --gryphon-muted:#6b7280;
  --gryphon-card:#f6f7fb;
  --gryphon-white:#ffffff;
  --gryphon-accent:#1b6fb4;
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--gryphon-white);
  color:var(--gryphon-navy);
  line-height:1.6;
  /* Sticky footer layout */
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{text-decoration:none;color:var(--gryphon-accent);}
header{
  background:var(--gryphon-navy);
  color:var(--gryphon-white);
  padding:14px 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:44px;
  height:44px;
  border-radius:10px;
}
.brand-text-title{
  font-weight:800;
  font-size:20px;
}
.brand-text-tag{
  font-size:12px;
  color:#cdd7e6;
}
nav a{
  margin-left:18px;
  color:var(--gryphon-white);
  font-weight:600;
}
nav a:hover{text-decoration:underline;}

.hero{
  padding:60px 6%;
  display:flex;
  gap:40px;
  align-items:center;
  position:relative;
  overflow:hidden;
  color:var(--gryphon-white);
  background:
    radial-gradient(circle at 10% 0%, rgba(212,175,55,0.18) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(27,111,180,0.22) 0, transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 6px),
    var(--gryphon-navy);
}
.hero::before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:280px;
  height:280px;
  background-image:url('assets/logo.png');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  opacity:0.07;
  transform:rotate(-12deg);
}
.hero-left{flex:2;position:relative;z-index:1;}
.hero-right{flex:1;position:relative;z-index:1;}
.hero h1{
  font-size:34px;
  margin-bottom:10px;
}
.hero .lead{
  color:#e5e7eb;
  margin-bottom:18px;
}
.hero-cta-primary, .hero-cta-secondary{
  display:inline-block;
  padding:11px 18px;
  border-radius:999px;
  font-weight:700;
  margin-right:10px;
  margin-bottom:10px;
}
.hero-cta-primary{
  background:var(--gryphon-gold);
  color:var(--gryphon-navy);
}
.hero-cta-secondary{
  border:2px solid var(--gryphon-gold);
  color:var(--gryphon-gold);
}

.section{
  padding:42px 6%;
}
.section h2{
  font-size:24px;
  margin-bottom:12px;
}
.section-lead{
  color:var(--gryphon-muted);
  max-width:720px;
  margin-bottom:18px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}
.card{
  background:var(--gryphon-card);
  border-radius:12px;
  padding:18px;
  box-shadow:0 8px 24px rgba(10,15,31,0.08);
}
.card h3{
  margin-bottom:6px;
}
.small{
  font-size:14px;
  color:var(--gryphon-muted);
}
.hero .card h3{
  color: var(--gryphon-muted);
}
.badge{
  display:inline-block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:3px 9px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,0.7);
  color:var(--gryphon-gold);
  margin-bottom:6px;
}
.footer{
  background:#031029;
  color:#9aa3b2;
  padding:24px 6%;
  font-size:13px;
  /* Push footer to bottom on short pages */
  margin-top:auto;
  border-top:1px solid rgba(10,15,31,0.08);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

/* Forms */
form label{
  display:block;
  font-size:14px;
  margin-top:10px;
  margin-bottom:4px;
}
form input, form textarea, form select{
  width:100%;
  padding:9px 10px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:14px;
}
form textarea{resize:vertical;min-height:120px;}
form button{
  margin-top:14px;
  background:var(--gryphon-gold);
  color:var(--gryphon-navy);
  padding:10px 18px;
  border-radius:999px;
  border:none;
  font-weight:700;
  cursor:pointer;
}

/* Layout helpers */
.split{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.split > div{
  flex:1;
  min-width:260px;
}

@media(max-width:760px){
  header{flex-direction:column;align-items:flex-start;gap:10px;}
  .hero{flex-direction:column;padding:40px 6%;}
  .hero h1{font-size:26px;}
}
