:root {
  --violet: #6d28d9;
  --pink: #f472b6;
  --bg: #f8f7fb;
  --ink: #1e1b2e;
  --muted: #6b6478;
  --radius: 12px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.5; }
h1, h2, h3 { margin: 0 0 0.4em; }
p { margin: 0 0 1em; }

.hero { text-align: center; padding: 70px 20px 50px; background: linear-gradient(135deg, var(--violet), var(--pink)); color: #fff; }
.hero__avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; margin-bottom: 16px; }
.hero h1 { font-size: 2rem; }
.hero__tag { opacity: 0.9; }
.hero__links { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
.hero__links a { color: #fff; text-decoration: none; font-weight: 600; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 2px; }

.section { max-width: 1000px; margin: 0 auto; padding: 56px 20px; }
.section--alt { background: #fff; max-width: none; }
.section--alt > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.section h2 { text-align: center; font-size: 1.6rem; color: var(--violet); }
.section__sub, .section__note { text-align: center; color: var(--muted); font-size: 0.9rem; }

.grid { display: grid; gap: 20px; margin-top: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 800px) { .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; } .hero h1 { font-size: 1.6rem; } }

.stat { text-align: center; background: #fff; border-radius: var(--radius); padding: 20px 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.stat__num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--pink); }

.card { background: var(--bg); border-radius: var(--radius); padding: 20px; text-align: center; }

.form { max-width: 520px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; gap: 14px; flex-wrap: wrap; }
.form__row label { flex: 1; min-width: 200px; }
label { display: flex; flex-direction: column; font-size: 0.9rem; gap: 6px; color: var(--muted); }
input, select, textarea { padding: 10px; border: 1px solid #e2ddea; border-radius: 6px; font-family: inherit; font-size: 1rem; }
.btn { align-self: flex-start; padding: 12px 22px; border-radius: var(--radius); border: none; font-weight: bold; background: var(--violet); color: #fff; cursor: pointer; }
.btn:hover { background: #5b21b6; }
.form__status { color: var(--violet); font-weight: bold; min-height: 1.2em; }

.footer { text-align: center; padding: 30px 20px; color: var(--muted); font-size: 0.85rem; }
