@use "../../../styles/abstracts/variables" as *;

.profile {
  min-height: 100vh;

  background: linear-gradient(
    to bottom,
    #0b0d12,
    #05060a
  );

  color: #e5e7eb;

  font-family: $font-onest, "Instrument Sans", sans-serif;

  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;

  /* ======================================== */
  /* NOISE LAYER */
  /* ======================================== */

  &::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    z-index: 0;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='white'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='45' cy='68' r='1'/%3E%3Ccircle cx='91' cy='27' r='1'/%3E%3Ccircle cx='136' cy='95' r='1'/%3E%3Ccircle cx='60' cy='150' r='1'/%3E%3Ccircle cx='168' cy='172' r='1'/%3E%3C/g%3E%3C/svg%3E");

    background-repeat: repeat;
  }

  /* ======================================== */
  /* SOFT GLOW */
  /* ======================================== */

  &::after {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
      circle,
      rgba(255, 183, 3, 0.04) 0%,
      rgba(255, 183, 3, 0.015) 35%,
      transparent 70%
    );

    pointer-events: none;

    z-index: 0;
  }
}

.header {
  border-bottom: 1px solid
    rgba(255, 255, 255, 0.08);

  background: rgba(
    5,
    6,
    10,
    0.8
  );

  backdrop-filter: blur(16px);

  position: relative;
  z-index: 10;
}

.headerInner {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 2rem;

  height: 74px;

  display: flex;
  align-items: center;
}

.logo {
  width: 130px;
}

.content {
  flex: 1;

  display: flex;
  justify-content: center;

  padding: 4rem 1.5rem;
}

.wrapper {
  width: 100%;
  max-width: 760px;

  position: relative;
  z-index: 2;
}

.copy {
  margin-bottom: 2.5rem;

  span {
    display: inline-block;

    color: #f79318;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    margin-bottom: 1rem;
  }

  h1 {
    color: white;

    font-size: 1.4rem;
    font-weight: 600;

    line-height: 1.1;

    margin: 0;
  }

  p {
    margin: 1rem auto 0;

    color: rgba(
      255,
      255,
      255,
      0.65
    );

    line-height: 1.8;

    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 2rem 1.25rem;
  }

  .headerInner {
    padding: 0 1rem;
  }

  .logo {
    width: 110px;
  }

  .copy {
    margin-bottom: 2rem;

    h1 {
      font-size: 2rem;
    }

    p {
      font-size: 0.9rem;
    }
  }
}

@media (max-width: 480px) {
  .copy {
    h1 {
      font-size: 1.75rem;
    }
  }
}

::-webkit-scrollbar{
  display: none !important;
}