:root{
  --bg: #f7f9fc;
  --panel: rgba(255,255,255,0.80);
  --panel2: rgba(255,255,255,0.92);
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --accent: #2563eb;
  --accent2: #0ea5e9;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(37,99,235,0.12), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(14,165,233,0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a.underline{ text-decoration: underline; text-underline-offset: 3px; }

.container{ max-width: 1080px; margin: 0 auto; padding: 26px 18px 70px; }

.nav{
  position: sticky;
  top: 12px;
  z-index: 10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 16px;
  border:1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

.brand{ display:flex; flex-direction:column; gap:2px; }
.brand strong{ font-size: 14px; letter-spacing: 0.12em; }
.brand span{ font-size: 12px; color: var(--muted); }

.navlinks{ display:flex; gap: 10px; flex-wrap: wrap; justify-content:flex-end; }
.navlinks a{
  font-weight: 700;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}
.navlinks a:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.55);
}
.navlinks a.active{
  color: var(--text);
  border-color: rgba(37,99,235,0.25);
  background: rgba(37,99,235,0.10);
}

.hero{
  margin-top: 18px;
  padding: 28px 18px;
  border:1px solid var(--line);
  border-radius: 22px;
  background: var(--panel2);
  overflow:hidden;
  position: relative;
}

.heroMedia{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

@media (min-width: 900px){
  .heroMedia{ grid-template-columns: 1.1fr 0.9fr; }
}

.kicker{
  color: var(--accent);
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 12px;
}

h1{ margin: 10px 0 10px; font-size: 38px; letter-spacing: -0.02em; }
h2{ margin: 0 0 10px; font-size: 18px; letter-spacing: 0.01em; }
p{ margin: 0; color: var(--muted); max-width: 82ch; }

.media{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}

.grid{ display:grid; gap: 14px; grid-template-columns: 1fr; margin-top: 16px; }
@media (min-width: 860px){ .grid{ grid-template-columns: 1.05fr 0.95fr; } }

.card{
  border:1px solid var(--line);
  border-radius: 18px;
  background: var(--panel2);
  padding: 16px;
}

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

.badges{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.badge{
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
}
.badge strong{ color: var(--text); font-weight: 800; }

.btnrow{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.75);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  transition: transform 0.08s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 10px 30px rgba(37,99,235,0.10);
}

.btnPrimary{
  border-color: rgba(37,99,235,0.35);
  background: linear-gradient(180deg, rgba(37,99,235,0.12), rgba(255,255,255,0.85));
}
.btnPrimary:hover{ border-color: rgba(37,99,235,0.45); }

.form{ display:grid; gap: 10px; margin-top: 10px; }
.input, .textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.85);
  color: var(--text);
  outline: none;
}
.textarea{ min-height: 120px; resize: vertical; }

.small{ font-size: 12px; color: var(--muted); }
.small a{ text-decoration: underline; text-underline-offset: 3px; }

.footer{
  margin-top: 22px;
  padding-top: 14px;
  border-top:1px solid rgba(15,23,42,0.10);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

hr.sep{
  border: none;
  border-top: 1px solid rgba(15,23,42,0.10);
  margin: 14px 0;
}
.note{ margin-top: 12px; color: var(--muted); font-size: 12px; }
