:root{
  --bg:#0b1220;
  --card:#111a2e;
  --muted:#93a4c7;
  --text:#e9efff;
  --brand:#ff6a00;
  --brand2:#ffd000;
  --border:rgba(233,239,255,.12);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(255,106,0,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,208,0,.12), transparent 55%),
    linear-gradient(180deg, #070b14 0%, var(--bg) 35%, #070b14 100%);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
button,input,textarea{font:inherit}

/* Layout */
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:56px 0}
.grid{display:grid; gap:18px}
.grid.cols-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2, minmax(0,1fr))}
@media (max-width: 900px){
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card.padded{padding:18px}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  padding:8px 12px;
  color:var(--muted);
  font-size:13px;
}
.muted{color:var(--muted)}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.18);
  color:var(--muted);
  font-size:13px;
}

/* Header */
.topbar{
  background: rgba(0,0,0,.25);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:10px;
}
.topbar .small-links{display:flex; gap:12px; flex-wrap:wrap}
.topbar .small-links a{color:var(--muted); font-size:13px}
.topbar .small-links a:hover{color:var(--text)}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,11,20,.65);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}
.brand img{width:200px}
.brand .title{font-weight:800; letter-spacing:.2px}
.brand .sub{color:var(--muted); font-size:12px}

.menu{
  display:flex;
  align-items:center;
  gap:16px;
}
.menu a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}
.menu a.active, .menu a:hover{
  color:var(--text);
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
}
.menu .dropdown{position:relative}
.menu .dropdown > a{display:inline-flex; gap:6px; align-items:center}
.menu .dropdown-menu{
  position:absolute;
  top:44px;
  left:0;
  min-width:220px;
  background: rgba(10,16,30,.98);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:8px;
  display:none;
}
.menu .dropdown-menu a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.menu .dropdown-menu a:hover{
  border-color:var(--border);
  background: rgba(255,255,255,.05);
}
.menu .dropdown.open .dropdown-menu{display:block}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,106,0,.35);
  background: linear-gradient(180deg, rgba(255,106,0,.18), rgba(255,106,0,.08));
  color:var(--text);
  font-weight:800;
  font-size:14px;
}
.cta:hover{filter:brightness(1.05)}
.hamburger{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
}
@media (max-width: 980px){
  .menu{display:none}
  .hamburger{display:inline-flex}
  .mobile{
    display:none;
    padding:10px 0 16px;
  }
  .mobile.open{display:block}
  .mobile a{
    display:block;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid var(--border);
    margin-top:10px;
    color:var(--muted);
    font-weight:700;
  }
  .mobile a:hover{color:var(--text)}
}

/* Hero */
.hero{
  padding:42px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
.hero h1{
  font-size:44px;
  line-height:1.1;
  margin:12px 0 10px;
  letter-spacing:-.6px;
}
@media (max-width: 900px){
  .hero h1{font-size:34px}
}
.hero p{color:var(--muted); margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
}
.btn.primary{
  border-color: rgba(255,106,0,.35);
  background: linear-gradient(180deg, rgba(255,106,0,.20), rgba(255,106,0,.10));
}
.btn:hover{filter:brightness(1.05)}
.hero-art{
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.hero-art img{width:100%; max-width:330px; opacity:.95}

/* Typography helpers */
.kicker{
  text-transform:uppercase;
  letter-spacing: .16em;
  font-weight:800;
  color: rgba(255,255,255,.72);
  font-size:12px;
}
.h2{
  font-size:30px;
  letter-spacing:-.4px;
  margin:8px 0 10px;
}
.lead{color:var(--muted); margin:0}

/* Footer */
footer{
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.20);
  padding:34px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap:16px;
}
@media (max-width: 900px){
  .footer-grid{grid-template-columns:1fr}
}
.footer-grid h3{margin:0 0 10px; font-size:16px}
.footer-grid a{color:var(--muted)}
.footer-grid a:hover{color:var(--text)}
.copyright{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
}

/* Forms */
.field{display:flex; flex-direction:column; gap:8px}
.field label{color:rgba(255,255,255,.80); font-size:13px; font-weight:700}
.field input, .field textarea{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  color:var(--text);
  border-radius:14px;
  padding:12px 12px;
  outline:none;
}
.field textarea{min-height:120px; resize:vertical}
.field input:focus, .field textarea:focus{border-color: rgba(255,106,0,.35)}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 900px){
  .form-grid{grid-template-columns:1fr}
}

/* Utility */
.sp-8{height:8px}
.sp-12{height:12px}
.sp-18{height:18px}
.sp-24{height:24px}
.hr{
  height:1px;
  width:100%;
  background: var(--border);
  margin:18px 0;
}
/* Banner Section */
.banner {
  background-color: #28580d; /* Dark grey background */
  padding: 24px 0;
  margin: 0;
}

.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.banner-content h2 {
  color: #ffffff;
  font-size: 24px;
  margin: 0 0 8px 0;
}

.banner-content p {
  color: #d4d4d4;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .banner-inner {
    flex-direction: column;
    text-align: center;
  }
}
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
nav[data-mobile] {
  display: none;
}

/* Show mobile menu only on smaller screens */
@media (max-width: 768px) {
  nav[data-mobile] {
    display: block;
  }
}