@charset "utf-8";

/* --- 1. CSS RESET --- */
address, article, aside, button, blockquote, body, dd, dialog, dl, dt, 
fieldset, footer, form, h1, h2, h3, h4, h5, h6, header, li, nav, ol, p, 
pre, section, td, th, tr, ul {
  margin: 0;
  padding: 0;
}

body {
  background: #fcfcfc;
  color: #090909;
  font-family: "AGB1";
  max-width: 100vw;
  line-height: normal; 
  overflow: hidden; /* Locks the main window entirely */
  overscroll-behavior: none; /* Kills the native rubber-band bounce */
  margin: 0;
  padding: 0;
  width: 100vw;	
  height: 100dvh; /* Uses the safe viewport height */
  touch-action: manipulation !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "AGB1";
  src: url("ABCWalter-NeueHalbfett.otf")
    format("opentype");
}



::-webkit-scrollbar {
  display: none !important; 
  width: 0px !important;  
  opacity: 0 !important;   
}

html {
  -webkit-text-size-adjust: 100%; 
}

/* --- 2. THE NAVIGATION (Pill & Fixed Menu) --- */
.navContain {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.pillMenu__rail {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  display: flex;
  position: relative;
  align-items: center;
  min-width: 80px;
  justify-content: center;
}

.pillGroup {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pillMenu__item {
  background: transparent;
  border: none;
  color: #fcfcfc;
  padding: 8px 30px;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s;
}

.pillMenu__item.is-active {
  color: #000;
}

.pillMenu__underline {
  position: absolute;
  height: 100%;
  background: #fcfcfc;
  border-radius: 100px;
  z-index: -1;
  bottom: 0; 
  left: 0;
  /* GSAP handles the animation, so no CSS transition needed here */
}

.fixedMenu {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 100;
  opacity: 0;
  pointer-evs: none;
}





.col0, .col1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: #fcfcfc;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* Traps momentum scrolling inside the div */
}

.col0 { z-index: 10; }
.col1 { z-index: 20; }


/* 3. Add an invisible safety bumper to the bottom of your content */
.col0::after, .col1::after, .col3::after {
  content: '';
  display: block;
  height: env(safe-area-inset-bottom, 40px); /* Pushes content up above the iPhone swipe bar */
  width: 100%;
}


.col3 {
  position: fixed;
  top: 5svh;
  left: 0;
  width: 100vw;
  background: #fcfcfc;
  z-index: 30;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
	will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    /* Ensure it has a fixed height so math is perfectly stable */
    height: 100dvh;
	
	
}

/* The visual pill at the top of the modal */
.drag-handle {
  width: 36px;
  height: 5px;
  background-color: #d1d0c5; /* Adjust to match your grey */
  border-radius: 10px;
  margin: 12px auto 20px auto;
  user-select: none;
}


/* --- 4. TYPOGRAPHY --- */
@font-face {
  font-family: "Titler";
  src: url("ABCDiatype-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "microText";
  src: url("ABCDiatype-Medium.ttf") format("truetype");
}

a {
  text-decoration: none; 
  color: #090909; 
}

.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

h1 {
  font-size: 1.25em;
  line-height: 1.2em;
  font-weight: 500;
}

.mainTitle {
  font-size: 1.25vw;
  line-height: 1.3em;
  font-weight: 500;
}

.microText {
  font-size: 1.5vh;
  line-height: 1.2em; 
  font-weight: 700;
}

.massiveText {
  font-size: 10.5vh;
  line-height: 1em; 
  perspective: 1000px;
  font-weight: 700;
  letter-spacing: -.05em;
  padding-bottom: 0.1em;
  display: block;
  overflow: visible !important; 
  position: relative;
}


.reallyMassiveText {
  font-size: 10.5vh;
  line-height: 1em; 
  perspective: 1000px;
   font-weight:normal;
  letter-spacing: -.05em;
  padding-bottom: 0.1em;
  display: block;
  overflow: visible !important; 
  position: relative;
}

.megaText {
  font-size: 1.75vh;
  line-height: 1.2em; 
  perspective: 1000px;
  font-weight:normal;
  padding-bottom: 0.1em;
  display: block;
  overflow: visible !important; 
  position: relative;
}

.megaText div {
  display: inline-block !important;
  overflow: visible !important; 
  padding-bottom: 0.2em; 
  margin-bottom: -0.2em; 
  vertical-align: baseline; 
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* --- 5. BLOCKS & LAYOUT UTILITIES --- */
.block {
  position: relative; 
  width: 25vw; 
  padding-left: 37.5vw; 
  height: auto;
}

.blockBuffer {
  height: 5.5vh; 
  position: relative;
}

.subblockBuffer {
  height: 2.5vh; 
  position: relative;
}

.log-container {
  display: flex;
  flex-direction: column;
}

.archive-container {
  display: flex;
  flex-direction: column;
}

.blckFooter {
  margin-top: auto; 
  padding-top: 0; 
}



.log-content {
  min-height: 1.1em;
  visibility: visible;
  white-space: wrap; 
  word-wrap: break-word;
  display: block;
}

.status-msg {
  min-height: 1.1em;
}

/* --- 6. ANIMATIONS & TRANSITIONS --- */
.transition-fade {
  transition: .001s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.lazyload, .lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}



.bioHolder {
	display:flex; gap:30px; flex-direction:column;
}

.footerHolder {
	display:flex; gap:30px; flex-direction:column;
}

.log-item {padding-top:30px; display:flex; flex-direction:column; gap:10px; position: relative;}

.content-wrapper {width:100vw; align-items:center; overflow: hidden; display: flex; flex-direction: column; gap:10px; will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;}


.log-image {width: 60vw; height: auto; padding-top:7.5vh; padding-bottom:7.5vh;}


 /*
  * 
  * 
  * MAINFRAME
  * 
  * 
  * 
  */ 
  

.mainframe {
  opacity: 1 !important;
  transition: opacity 0.25s;
}
.mainframe.is-hidden {
  opacity: 0 !important;
}





.logoSteez {width:55px; border-radius:3px;}



.blinker {
  text-decoration: none; /* Removes the default browser underline if it's a link */
  background-image: linear-gradient(currentColor, currentColor); /* Uses your current text color for the line */
  background-position: 0% 100%; /* Positions the line at the bottom left */
  background-repeat: no-repeat;
  background-size: 0% 1px; /* 0% width, 3px thickness. Change 3px to whatever looks best! */
  padding-bottom: 2px; /* Gives a little breathing room between the text and the line */
}


.ticker-container {
  display: flex;
  align-items: flex-start; /* Keeps the text aligned to the top */
  gap: 8px; /* The space between "Working with" and the rolling text */
}

/* 2. Keep the prefix from wrapping */
.ticker-prefix h1 {
  margin: 0; 
  white-space: nowrap; 
}

/* 3. Your existing frame CSS (slightly tweaked for Flexbox) */
.frame {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 0px; /* JS handles this */
  /* You can drop the float: left; since flexbox handles the layout now */
  width: 100%; /* Or keep 30vw depending on your layout needs */
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.impressions h1 {
  margin: 0; /* Critical: Removes default spacing so it aligns with the prefix */
}


#ticker-container {
    display: flex;         
    flex-direction: row;     
    flex-wrap: nowrap;   
    justify-content: center;
    align-items: center;
    width: 100vw;         
    font-size: 15vw;           
    line-height: 1.1em;
	letter-spacing:-.05em;
    height: 1.1em;
    overflow: hidden;
    color: #090909;
}

.tickerType {
  position: relative;
  /* NO FIXED WIDTH HERE. The hidden placeholder will dictate the exact size */
  height: 1.1em;
  flex-shrink: 0;
}

.ticker-space {
  /* This controls the literal space between "AG" and "03" */
  width: 0.35em; 
  height: 1.1em;
  flex-shrink: 0;
}

.ticker-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center; /* Keeps spinning numbers centered in their custom-sized slots */
}

.ticker-dot {
  width: 0.4em !important; 
}


.ticker-strip span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
}










@media only screen and (max-height: 1100px) {
 .megaText {
    font-size: 23px;
  }

 .block {
  position: relative; 
  width: 30vw; 
  padding-left: 35vw; 
  height: auto;
}
	
}	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


/* --- 7. MEDIA QUERIES --- */
@media only screen and (max-width: 800px) {
	
	
#ticker-container {
    display: flex;         
    flex-direction: row;     
    flex-wrap: nowrap;   
    justify-content: center;
    align-items: center;
    width: 100vw;         
    font-size: 15vw;           
    line-height: 1.1em;
    height: 1.1em;
    overflow: hidden;
    color: #090909;
}	
	

.logoSteez {width:35px; border-radius:2.5px;}	
	
.log-image {width: 95vw; height: auto; padding-top:8vh; padding-bottom:7.5vh;}
	
	
.blockBuffer {
  height: 8.5vh; 
  position: relative;
}

.subblockBuffer {
  height: 3vh; 
  position: relative;
}	
	
	
body {height:110vh; 
		overflow:hidden !Important;
	 overscroll-behavior: none!Important;
  touch-action: none!Important;
  overflow: hidden;}	
	
	
.bioHolder {
	display:flex; gap:15px; flex-direction:column;
}	
	
.col0, .col1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh;
  background: #fcfcfc;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}	
	

	
.col3 {
  position: fixed;
  top: 5svh;
  left: 0;
  width: 100vw;
  height: 110vh;
  background: #fcfcfc;
  z-index: 30;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  overflow-y: auto;	
  overflow-x: hidden;	
  -webkit-overflow-scrolling: touch;
}	
	
	

	
	
.navContain {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}	
	
  .pillMenu__rail {
    background: rgba(0, 0, 0, 0.4);
    min-width: 70px;
    overflow: hidden; 
  }
  
  .pillMenu__item {
    padding: 8px 25px;
  } 
  
  .megaText {
    font-size: 4vw;
  }
  
  .block {
    width: 60vw; 
    padding-left: 20vw; 
  } 
}

/* --- 8. ACCESSIBILITY / TOUCH FIXES --- */
@supports (-webkit-touch-callout: none) {
  a, button, [role="button"], input[type="button"], input[type="submit"], label {
    -webkit-tap-highlight-color: transparent; 
  }
  *:focus {
    outline: 0;
    outline: none;
  }
}