
:root{
  --bg:#0a0d12;          /* deep dark background */
  --fg:#f3f6fb;          /* light foreground text */
  --muted:#b0bfd4;       /* muted text */
  --card:#111723;        /* card surface */
  --border:#1e2a3a;      /* soft borders */
  --accent:#00bfff;      /* bright link/brand blue (Yola-like) */
  --accent-2:#ffd700;    /* gold/yellow accent for CTAs */
}
* { box-sizing:border-box; }
html,body { margin:0; padding:0; font-family:System-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; background:var(--bg); color:var(--fg); }
a { color:var(--accent); text-decoration:none; }
a:hover { text-decoration:underline; }
header { position:sticky; top:0; background:rgba(11,15,20,.85); backdrop-filter:saturate(120%) blur(8px); border-bottom:1px solid var(--border); z-index:10; }
.nav { max-width:1100px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:14px 20px; }
.nav .brand { display:flex; align-items:center; gap:10px; font-weight:700; }
.nav .logo { width:36px; height:36px; border-radius:4px; object-fit:contain; }
.nav a { margin:0 8px; }
.container { max-width:1100px; margin:0 auto; padding:28px 20px; }
.hero { padding:64px 0; display:grid; grid-template-columns:1.2fr 0.8fr; gap:28px; align-items:center; }
.hero h1 { font-size:clamp(28px,3.8vw,46px); line-height:1.1; margin:0 0 12px; }
.hero p { color:var(--muted); margin:0 0 18px; }
.cta { display:flex; gap:12px; flex-wrap:wrap; }
.btn { display:inline-block; padding:12px 16px; border-radius:10px; border:1px solid #2a3345; background:linear-gradient(135deg, rgba(2,175,255,.12), rgba(2,175,255,.06)); color:var(--fg); font-weight:600; }
.btn.primary { background:linear-gradient(135deg,var(--accent),var(--accent)); color:white; border:none; }
.grid { display:grid; gap:18px; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); }
.card { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:18px; }
.card h3 { margin-top:0; }
footer { border-top:1px solid var(--border); margin-top:40px; }
.footer-inner { max-width:1100px; margin:0 auto; padding:24px 20px; display:grid; grid-template-columns:1fr 1fr; gap:18px; color:var(--muted); }
.small { font-size:14px; color:var(--muted); }
.kicker { text-transform:uppercase; letter-spacing:.18em; font-size:12px; color:#7aa2ff; }
h2 { margin-top:10px; }
.table { width:100%; border-collapse:collapse; }
.table th,.table td { padding:10px 12px; border-bottom:1px solid var(--border); text-align:left; }
.notice { padding:12px 14px; background:#0e141f; border:1px dashed #274063; border-radius:12px; color:#cde1ff; }
form { display:grid; gap:12px; max-width:560px; }
input, textarea { width:100%; padding:12px 14px; border-radius:10px; border:1px solid #2a3345; background:#0e1520; color:var(--fg); }
label { font-weight:600; }
@media (max-width: 860px) { .hero { grid-template-columns:1fr; } }

.btn.primary{ background:var(--accent); color:#001521; border:none; box-shadow:0 4px 18px rgba(0,191,255,.25); }
.btn.secondary{ background:var(--accent-2); color:#222; border:none; box-shadow:0 4px 18px rgba(255,215,0,.18); }
.nav .logo{ background:transparent !important; }
.card{ border:1px solid var(--border); }
header{ background:rgba(6,12,18,.9); }
.kicker{ color:var(--accent); }
a{ color:var(--accent); }

h1,h2,h3{ letter-spacing:.2px; }
.nav a{ font-weight:600; }
