*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111;
  --surface: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #999;
  --accent: #e04a2f;
  --accent-hover: #c93d25;
  --radius: 12px;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  -webkit-font-smoothing: antialiased;
}

.card {
  width: 100%;
  max-width: 380px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.name {
  font-size: 1.4rem;
  font-weight: 700;
}

.handle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.social-link:hover {
  background: #2a2a2a;
}

.actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: var(--surface);
  border: 2px solid #333;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn:hover {
  background: #2a2a2a;
  border-color: #444;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.leadform {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.leadform-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.leadform input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 2px solid #333;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.leadform input::placeholder {
  color: #666;
}

.leadform input:focus {
  border-color: var(--accent);
}

.form-status {
  font-size: 0.9rem;
  color: var(--accent);
  text-align: center;
}

.form-status.success {
  color: #4caf50;
}
