:root {
  --bg: #050302;
  --panel: #100c0a;
  --panel-2: #17100d;
  --text: #f7f2ee;
  --muted: #b5aaa3;
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --blue: #1596ff;
  --purple: #a94cff;
  --green: #85c900;
  --line: rgba(255, 255, 255, .13);
  --danger: #8d1b1b;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 90, 0, .13), transparent 32%),
    radial-gradient(circle at 15% 15%, rgba(255, 90, 0, .20), transparent 28%),
    linear-gradient(180deg, #120804 0%, #050302 45%, #030303 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  background: rgba(5, 3, 2, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-main {
  font-size: 29px;
  font-weight: 950;
  letter-spacing: -1px;
}

.brand-main strong,
.profile-brand strong {
  color: var(--orange);
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.main-nav a:hover {
  color: var(--orange);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

.section {
  padding: 86px clamp(20px, 6vw, 90px);
}

.section-title {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title.compact {
  max-width: 680px;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
}

.btn.secondary {
  background: rgba(255, 255, 255, .065);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn.danger {
  background: var(--danger);
  color: white;
}

.btn.full {
  width: 100%;
  margin-top: 16px;
}

.btn:hover {
  transform: translateY(-2px);
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
  font-size: 44px;
  font-weight: 950;
  display: grid;
  place-items: center;
}

.avatar.large {
  width: 96px;
  height: 96px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
  font-weight: 950;
}

.hidden {
  display: none;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}
