  @font-face {
  font-family: 'Stretch Pro';
  src:
    url('/fonts/StretchProRegular.woff2') format('woff2'),
    url('/fonts/StretchProRegular.woff') format('woff');

  font-weight: normal;
  font-style: normal;
}
.cde-loader{
  position:fixed;
  inset:0;
  z-index:999999;
  background:#050505;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:opacity 1s cubic-bezier(.77,0,.18,1);
}

.cde-loader.hidden{
  opacity:0;
  pointer-events:none;
}

.logo-stage{
  position:relative;
  width:min(92vw,1400px);
  height:120px;
}

.logo-panel{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-panel svg{
  width:100%;
  overflow:visible;
}

.logo-text{
  fill:white;
  font-size:42px;
  font-family:'Stretch Pro',sans-serif;
  letter-spacing:4px;
  dominant-baseline:middle;
  text-anchor:middle;
}


/* CDE */

.cde-panel{
  clip-path:inset(0 0 0 0);
  animation:
    closeCDE 1.2s 1.2s cubic-bezier(.77,0,.18,1) forwards;
}


/* FULL TEXT */

.full-panel{
  clip-path:inset(0 100% 0 0);
  animation:
    openFull 1.2s 1.2s cubic-bezier(.77,0,.18,1) forwards;
}


/* RIGHT -> LEFT */

@keyframes closeCDE{

  0%{
    clip-path:inset(0 0 0 0);
  }

  100%{
    clip-path:inset(0 100% 0 0);
  }

}


/* LEFT -> RIGHT */

@keyframes openFull{

  0%{
    clip-path:inset(0 100% 0 0);
  }

  100%{
    clip-path:inset(0 0 0 0);
  }

}
.noted{
  font-size: 14px;
  letter-spacing: normal;
  font-weight: 400;
  display: block;
  color: gray;
  line-height: 20px;
  margin-top: 20px;
}
.noted b{
  color: white;
  text-decoration: underline;
  font-weight: 300;
}

.page-website {
    width: 100%;
    padding: 0;
}

.company-nav{
  position:fixed;
  left:50%;
  bottom:30px;
  transform:translateX(-50%);
  z-index:9999;
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 18px;
  background:rgba(10,10,10,0.55);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  color:white;
  font-family:sans-serif;
}

.company-info {
  text-align: center;
  min-width: 160px;
}

.company-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.company-info a {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: #ff6000;
  text-decoration: none;
  
}

.nav-arrow {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;

  cursor: pointer;

  transition: 0.25s ease;
}

.nav-arrow:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.05);
}

.nav-arrow svg {
  width: 16px;
  height: 16px;

  stroke: white;
  stroke-width: 2;
  fill: none;
}

.company-section {
  height: 100vh;
}





h1 span {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  font-style: italic;
  font-size: clamp(40px, 5vw, 90px);
  text-transform: uppercase;
  background: linear-gradient(#262626, #eaeaea, #262626);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-flex;
}
h1 span:nth-child(1) {
  z-index: 2;
}
h1 span:nth-child(2) {
  z-index: 1;
  /* text-shadow: 1px 1px 0 #262626, 2px 2px 0 #262626, 3px 3px 0 #262626, 4px 4px 0 #262626, 5px 5px 0 #262626, 6px 20px 20px black, -1px -1px 0 #fff; */
}


.project-section.white {
    background: white;
}
.white .noted b {
    color: black;
    text-decoration: underline;
    font-weight: 300;
}

.white .scroll-line{
  color: black;
}

.project-section{
  padding: 30px;
}




.hr-menu-toggle{
  width:60px;
  height:60px;
  position:absolute;
  z-index:999999999;
  background: transparent;
  border:0;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  right: 0;
} 

.hr-menu-toggle span{
  position:absolute;
  width:22px;
  height:1px;
  background:#fff;
  transition:0.4s cubic-bezier(.77,0,.18,1);
}

.hr-menu-toggle span:nth-child(1){
  transform:translateY(-5px);
}

.hr-menu-toggle span:nth-child(2){
  transform:translateY(5px);
}

.hr-menu-toggle.active span:nth-child(1){
  transform:rotate(45deg);
}

.hr-menu-toggle.active span:nth-child(2){
  transform:rotate(-45deg);
}

.hr-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999998;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s cubic-bezier(.77, 0, .18, 1);
    backdrop-filter: blur(0px);
    margin-top: 59px;
}

.hr-menu-overlay.active{
  opacity:1;
  pointer-events:auto;
  backdrop-filter:blur(25px);
}

.hr-menu-panel{
  width:min(700px,90%);
  background:rgba(15,15,20,0.55);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:0px;
  padding:50px;
  backdrop-filter:blur(40px);
  box-shadow:0 20px 80px rgba(0,0,0,0.4);
}

.hr-menu-nav{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.hr-menu-item{
  display:flex;
  align-items:center;
  gap:20px;
  text-decoration:none;
  color:#fff;
  font-size:clamp(24px,4vw,42px);
  font-weight:300;
  letter-spacing:-0.04em;
  transition:0.3s ease;
}

.hr-menu-item:hover{
  transform:translateX(10px);
  opacity:0.7;
}

.hr-menu-item svg {
    width: 28px;
    height: 28px;
    stroke: #ff6300;
    fill: none;
    stroke-width: 4px;
    opacity: 0.7;
}

.hr-menu-divider{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.08);
  margin:25px 0;
}

.hr-contact-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.hr-contact-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:rgba(255,255,255,0.7);
  font-size:14px;
  letter-spacing:0.04em;
}

.copy-btn{
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.05);
  color:#fff;
  cursor:pointer;
  transition:0.3s ease;
}

.copy-btn:hover{
  background:rgba(255,255,255,0.1);
}

.hr-pricing{
  margin-top:40px;
  color:rgba(255,255,255,0.45);
  font-size:14px;
  line-height:1.8;
  max-width:500px;
}

@media(max-width:768px){

  .hr-menu-panel{
    padding:30px;
  }

  .hr-menu-item{
    font-size:32px;
  }

}