:root {
  --bg: #080a14;
  --bg-soft: #111527;
  --card: rgba(17, 21, 39, 0.72);
  --text: #e9ecf9;
  --muted: #b6bfd8;
  --primary: #7c8cff;
  --primary-2: #49d6ff;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, #1a2247 0%, transparent 50%),
    radial-gradient(900px 500px at 90% 10%, #0a3b4f 0%, transparent 45%),
    linear-gradient(160deg, var(--bg) 0%, #0c1226 100%);
  line-height: 1.6;
  padding: 1.25rem;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 240px;
  height: 240px;
  top: -40px;
  left: -40px;
  background: var(--primary);
}

.orb-2 {
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: 5%;
  background: var(--primary-2);
}

.site-header,
main,
.site-footer {
  width: min(1050px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0 1rem;
}

.brand {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--text);
}

.section {
  margin-block: clamp(1.1rem, 2.6vw, 1.9rem);
}

.hero {
  background: linear-gradient(145deg, rgba(26, 34, 71, 0.55), rgba(10, 59, 79, 0.45));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 4vw, 2.8rem);
}

.eyebrow {
  margin: 0;
  color: var(--primary-2);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 3.3rem);
  line-height: 1.15;
}

h1 span {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 60ch;
  margin-bottom: 1.3rem;
  color: var(--muted);
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  color: #060812;
  font-weight: 650;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  padding: 0.72rem 1.1rem;
  border-radius: 12px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.8vw, 1.7rem);
}

h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}

.section-intro {
  margin-top: 0;
  color: var(--muted);
}

.social-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 140, 255, 0.58);
  background: rgba(23, 29, 52, 0.88);
}

.social-badge {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #081021;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  flex-shrink: 0;
}

.social-badge img {
  width: 20px;
  height: 20px;
  display: block;
}

.social-card h3 {
  margin: 0;
  font-size: 1rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.linktree-main {
  width: min(760px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.linktree-list {
  display: grid;
  gap: 0.85rem;
}

.linktree-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.linktree-item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 140, 255, 0.58);
  background: rgba(23, 29, 52, 0.88);
}

.linktree-title {
  font-weight: 650;
  line-height: 1.3;
}

.linktree-url {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 1.8rem;
  padding: 0.4rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  body {
    padding: 0.95rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .nav-list {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}
