@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #07080b;
  --surface: #0d0f13;
  --surface-2: #12151b;
  --surface-3: #181c23;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.16);
  --text: #f5f6f8;
  --muted: #8d929d;
  --dim: #5f646e;

  /* SNIPE BRAND ACCENT */
  --accent: #d7ff4f;
  --accent-dark: #b9df35;
  --accent-glow: rgba(215,255,79,.15);

  --radius: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(215,255,79,.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 100% 40%,
      rgba(255,255,255,.025),
      transparent 30%
    ),
    var(--bg);
  font-family: "DM Sans", sans-serif;
}

/* Prevent accidental text highlighting across the website */
body,
body * {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================
   GLOBAL
========================================= */

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
}

/* =========================================
   NAVIGATION
========================================= */

.nav-wrap {
  padding-top: 18px;
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;

  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .15em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;

  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  transition: color .2s ease;
}

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

.nav-cta {
  padding: 10px 16px;

  border-radius: 9px;

  background: var(--accent);
  color: #101308 !important;

  font-weight: 700;

  box-shadow:
    0 0 0 1px rgba(215,255,79,.2),
    0 8px 30px rgba(215,255,79,.08);
}

/* =========================================
   HERO
========================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;

  gap: 70px;

  padding: 100px 0 120px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 7px 11px;

  border: 1px solid var(--border);
  border-radius: 999px;

  background: rgba(255,255,255,.025);

  color: var(--muted);

  font-size: 11px;
  font-weight: 600;
}

.pill-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow: 0 0 12px var(--accent);
}

.hero h1 {
  max-width: 760px;

  margin: 23px 0;

  font-size: clamp(55px, 7vw, 88px);
  line-height: .94;

  letter-spacing: -.065em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 580px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: 25px;

  margin-top: 32px;
}

.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 19px;

  border: 1px solid rgba(215,255,79,.25);
  border-radius: 10px;

  background: var(--accent);
  color: #101308;

  font-size: 13px;
  font-weight: 700;

  box-shadow:
    0 10px 35px rgba(215,255,79,.08);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

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

  box-shadow:
    0 15px 45px rgba(215,255,79,.13);
}

.secondary {
  color: var(--muted);

  font-size: 13px;
  font-weight: 600;

  transition: color .2s ease;
}

.secondary:hover {
  color: var(--text);
}

/* =========================================
   PROFILE PREVIEW
========================================= */

.preview {
  position: relative;

  display: flex;
  justify-content: center;
}

.preview-glow {
  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: var(--accent);

  opacity: .07;

  filter: blur(90px);
}

.profile-card {
  position: relative;

  width: min(390px, 100%);

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.012)
    ),
    var(--surface);

  box-shadow:
    0 35px 100px rgba(0,0,0,.55);

  transform: rotate(1deg);
}

.profile-banner {
  height: 112px;

  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(215,255,79,.28),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255,255,255,.05),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #191d22,
      #090b0f 58%,
      #161a20
    );
}

.profile-body {
  position: relative;

  padding: 0 23px 21px;
}

.profile-avatar {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  margin-top: -36px;

  border: 4px solid var(--surface);
  border-radius: 50%;

  background: var(--surface-3);

  color: var(--accent);

  font-family: "Space Grotesk";
  font-size: 27px;
  font-weight: 700;
}

.profile-name {
  margin-top: 10px;

  font-size: 21px;
  font-weight: 700;
}

.profile-handle {
  margin-top: 2px;

  color: var(--dim);

  font-size: 11px;
}

.profile-badges {
  position: absolute;

  top: 20px;
  right: 22px;

  display: flex;
  gap: 6px;
}

.profile-badge {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 8px;

  background: rgba(255,255,255,.035);

  color: var(--accent);

  font-size: 10px;
}

.profile-bio {
  margin: 20px 0 16px;

  color: #bfc2c9;

  font-size: 12px;
  line-height: 1.6;
}

.profile-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 7px;
}

.profile-link {
  padding: 9px 5px;

  border: 1px solid var(--border);
  border-radius: 8px;

  color: #aeb2bb;

  text-align: center;

  font-size: 10px;
}

/* =========================================
   STATS
========================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 25px 24px;
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

.stat strong {
  font-family: "Space Grotesk";
  font-size: 24px;
}

.stat span {
  margin-left: 10px;

  color: var(--dim);

  font-size: 11px;
}

/* =========================================
   FEATURES
========================================= */

.section-title {
  max-width: 650px;
}

.section-title h2 {
  margin: 0;

  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;

  letter-spacing: -.055em;
}

.section-title p {
  max-width: 500px;

  margin-top: 18px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;

  gap: 13px;

  margin-top: 48px;
}

.feature {
  min-height: 240px;

  padding: 25px;

  border: 1px solid var(--border);
  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.035),
      rgba(255,255,255,.008)
    );

  transition:
    transform .2s ease,
    border-color .2s ease;
}

.feature:hover {
  transform: translateY(-3px);

  border-color: var(--border-hover);
}

.feature-icon {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

  margin-bottom: 52px;

  border: 1px solid rgba(215,255,79,.12);
  border-radius: 9px;

  background: var(--accent-soft);

  color: var(--accent);
}

.feature h3 {
  margin: 0 0 9px;

  font-size: 18px;
}

.feature p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.65;
}

/* =========================================
   USERNAME CLAIM
========================================= */

.claim {
  margin-bottom: 110px;

  padding: 1px;

  border-radius: 17px;

  background:
    linear-gradient(
      110deg,
      rgba(215,255,79,.25),
      rgba(255,255,255,.08),
      rgba(255,255,255,.025)
    );
}

.claim-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  padding: 52px;

  border-radius: 16px;

  background: #0b0d12;
}

.claim h2 {
  margin: 0;

  font-size: 40px;
  letter-spacing: -.055em;
}

.claim p {
  margin: 12px 0 0;

  color: var(--muted);

  font-size: 13px;
}

.claim-form {
  display: flex;
  align-items: center;

  min-width: min(480px, 100%);

  padding: 5px;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: #080a0e;
}

.claim-form span {
  padding-left: 12px;

  color: var(--dim);

  font-size: 12px;
}

.claim-form input {
  flex: 1;
  min-width: 0;

  padding: 10px 7px;

  border: 0;
  outline: 0;

  background: transparent;

  color: var(--text);

  font-size: 13px;
}

.claim-form button {
  padding: 10px 14px;

  border: 0;
  border-radius: 7px;

  background: var(--accent);
  color: #101308;

  font-size: 12px;
  font-weight: 700;
}

/* =========================================
   FOOTER
========================================= */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 0 32px;

  border-top: 1px solid var(--border);

  color: var(--dim);

  font-size: 10px;
}

.footer strong {
  color: var(--text);

  font-family: "Space Grotesk";

  letter-spacing: .15em;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .preview {
    max-width: 450px;
    margin: auto;
  }

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

  .feature:first-child {
    grid-column: 1 / -1;
  }

  .claim-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 650px) {

  .container {
    width: calc(100% - 28px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 60px 0 75px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-card {
    transform: none;
  }

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

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .section {
    padding: 90px 0;
  }

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

  .feature:first-child {
    grid-column: auto;
  }

  .claim-inner {
    padding: 35px 24px;
  }

  .claim h2 {
    font-size: 32px;
  }

  .claim-form {
    min-width: 0;
  }

  .footer {
    flex-wrap: wrap;
    gap: 15px;
  }
}
