:root{
  --bg1:#071b3f;
  --bg2:#0a3d91;
  --panel:#07142b;
  --panel2:#0a2046;
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.82);
  --line:rgba(255,255,255,.18);
  --line2:rgba(255,255,255,.32);
  --accent:#6fd0ff;
  --accent2:#9be6ff;
  --btn:#1a60ff;
  --btn2:#0f3fb3;
  --danger:#ff4d6d;
  --ok:#2ee59d;
  --radius:0px; /* square corners */
  --shadow: 0 10px 28px rgba(0,0,0,.35);
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Georgia, serif;
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 20% 10%, rgba(111,208,255,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(26,96,255,.22), transparent 55%),
    linear-gradient(160deg, var(--bg1), var(--bg2));
}

a{color:var(--accent2); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width:var(--max);
  margin:22px auto;
  border:2px solid rgba(255,255,255,.30);
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(7,20,43,.88), rgba(7,20,43,.78));
  box-shadow:var(--shadow);
}

.section{
  padding:18px 18px;
}
.sep{
  border-top:2px solid var(--line);
  border-bottom:1px solid rgba(255,255,255,.06);
}

header{
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand img{
  width:54px; height:54px;
  flex:0 0 auto;
}
.brand .titles{
  min-width:0;
}
.brand h1{
  margin:0;
  font-size:28px;
  letter-spacing:.6px;
  line-height:1.05;
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}
.brand p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.2;
}

.header-cta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.badge{
  padding:8px 10px;
  border:1px solid var(--line2);
  background:rgba(0,0,0,.25);
  font-size:13px;
}

nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:12px 18px;
  align-items:center;
  justify-content:space-between;
}
.navlinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.navlinks a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid var(--line2);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(10,32,70,.7), rgba(7,20,43,.6));
  color:var(--text);
  font-weight:700;
}
.navlinks a:hover{
  border-color:rgba(155,230,255,.75);
  box-shadow:0 0 0 3px rgba(111,208,255,.12);
  text-decoration:none;
}
.navlinks a[aria-current="page"]{
  border-color:rgba(111,208,255,.95);
  box-shadow:0 0 0 3px rgba(111,208,255,.16);
}

.hero{
  padding:24px 18px 16px;
}
.hero .grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.card{
  border:1px solid var(--line2);
  background:linear-gradient(180deg, rgba(10,32,70,.62), rgba(7,20,43,.62));
  border-radius:var(--radius);
  padding:16px;
}
.card h2{
  margin:0 0 10px;
  font-size:22px;
}
.card p{margin:8px 0; color:var(--muted); line-height:1.55}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:rgba(234,242,255,.92);
  font-weight:700;
  font-size:14px;
  margin-bottom:10px;
}
.spark{
  width:10px;height:10px;
  background:var(--accent);
  box-shadow:0 0 18px rgba(111,208,255,.65);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius);
  background: linear-gradient(180deg, var(--btn), var(--btn2));
  color:white;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{
  text-decoration:none;
  box-shadow:0 0 0 3px rgba(111,208,255,.14);
  border-color:rgba(155,230,255,.65);
}
.btn.secondary{
  background: linear-gradient(180deg, rgba(10,32,70,.75), rgba(7,20,43,.75));
}
.btn.cashapp{
  background: linear-gradient(180deg, #00d26a, #0a7a44);
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.list{
  margin:10px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
}
.list li{margin:6px 0}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
label{display:block; font-weight:700; margin:10px 0 6px}
input, textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus{
  border-color:rgba(111,208,255,.9);
  box-shadow:0 0 0 3px rgba(111,208,255,.12);
}
.small{
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}
.notice{
  padding:12px 12px;
  border:1px solid var(--line2);
  background:rgba(0,0,0,.18);
  margin:12px 0;
}

footer{
  padding:16px 18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-size:14px;
}
footer a{color:var(--accent2)}

@media (max-width: 900px){
  .hero .grid{grid-template-columns:1fr}
  header{flex-direction:column; align-items:flex-start}
  .header-cta{justify-content:flex-start}
}

@media (max-width: 640px){
  .brand h1{font-size:24px}
  .brand p{font-size:14px}
  .form-row{grid-template-columns:1fr}
  nav{gap:12px}
}
