:root{
  --bg:#0b1220;
  --text:#f3f4f6;
  --muted:#cbd5e1;
  --accent:#7dd3fc;
  --line:rgba(255,255,255,.12);
  --panel:rgba(255,255,255,.04);
  --panel2:rgba(255,255,255,.02);
}

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, #1b2a4b 0%, var(--bg) 55%) no-repeat,
    var(--bg);
  line-height:1.6;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

/* Layout */
.wrap{max-width:980px; margin:0 auto; padding:28px 16px 48px}

/* Header */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0 22px;
  border-bottom:1px solid var(--line);
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:260px;
}

.site-logo{
  width:140px;          /* increase/decrease to size the logo */
  height:auto;
  flex-shrink:0;
  display:block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}

.brand-text h1{
  font-size:18px;
  margin:0;
}

.brand-text p{
  margin:2px 0 0;
  color:var(--muted);
  font-size:13px;
}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-weight:600;
}

.btn.primary{
  border-color: rgba(125,211,252,.55);
  background: rgba(125,211,252,.12);
}

.btn:focus{
  outline:none;
  border-color: rgba(125,211,252,.75);
}

/* Hero */
.hero{padding:28px 0 10px}

.kicker{
  display:inline-block;
  margin-bottom:10px;
  color:rgba(125,211,252,.9);
  font-weight:700;
  letter-spacing:.08em;
  font-size:12px;
}

.hero h2{font-size:34px; margin:0 0 10px}
.hero p{color:var(--muted); margin:0 0 18px; max-width:760px}

/* Grid / Cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:18px;
}

.card{
  grid-column: span 12;
  background: var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
}

.card h3{margin:0 0 8px; font-size:18px}
.card p, .card li{color:var(--muted)}
ul{margin:10px 0 0 18px}

.two-col{grid-column: span 12}
@media (min-width: 840px){
  .two-col{grid-column: span 6}
}

/* Generic Section */
.section{
  margin-top:28px;
  background: var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px;
}

.section h2{margin-top:0}

.small{font-size:13px; color:var(--muted)}
hr.rule{border:0; border-top:1px solid var(--line); margin:16px 0}

/* Footer */
footer{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Forms */
label{display:block; margin:10px 0 6px; color:var(--muted); font-size:14px}

input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  background: var(--panel2);
  color: var(--text);
  outline:none;
}

textarea{min-height:140px; resize:vertical}

input:focus, textarea:focus{border-color: rgba(125,211,252,.55)}

.form-row{display:grid; grid-template-columns:1fr; gap:12px}
@media(min-width:840px){
  .form-row{grid-template-columns: 1fr 1fr}
}

.honeypot{display:none !important}

.notice{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(125,211,252,.08);
  color: var(--text);
}

.error{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,99,99,.10);
  color: var(--text);
}

